20 lines
479 B
YAML
20 lines
479 B
YAML
configuration: Release
|
|
version: 0.1.{build}
|
|
nuget:
|
|
account_feed: true
|
|
project_feed: true
|
|
|
|
init:
|
|
- git config --global core.autocrlf true
|
|
|
|
before_build:
|
|
- ps: invoke-webrequest https://go.microsoft.com/fwlink/?LinkID=827524 -OutFile core.exe
|
|
- ps: .\core.exe /install /quiet /norestart
|
|
- ps: dotnet restore
|
|
|
|
build_script:
|
|
- ps: dotnet build .\src\TurboLinks.Net
|
|
- ps: dotnet build .\src\TurboLinksExample
|
|
|
|
artifacts:
|
|
- path: artifacts\bin\TurboLinks.Net\Release\*.nupkg |