Files
UriBuilder.Fluent/appveyor.yml
Tommy Parnell 6d32f107e5 rename proj
2016-11-08 19:52:31 -05:00

23 lines
612 B
YAML

configuration: Release
version: 1.0.{build}
nuget:
account_feed: true
project_feed: true
artifacts:
- path: '**\*.nupkg'
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 -c Release .\src\UriBuilder.Fluent
- ps: dotnet pack -c Release .\src\UriBuilder.Fluent
- ps: dotnet build -c Release .\src\UriBuilder.Fluent.UnitTests
test_script:
- ps: dotnet test -c Release .\src\UriBuilder.Fluent.UnitTests