Files
plist-cil/appveyor.yml

15 lines
624 B
YAML
Raw Normal View History

2017-03-07 14:52:02 +01:00
install:
- choco install -y wget
- wget -q https://download.microsoft.com/download/5/F/E/5FEB7E95-C643-48D5-8329-9D2C63676CE8/dotnet-dev-win-x64.1.0.0-rc4-004771.exe
- dotnet-dev-win-x64.1.0.0-rc4-004771.exe /install /quiet /log dotnetinstall.log
- ps: Push-AppveyorArtifact "dotnetinstall.log"
2016-06-03 16:19:40 +02:00
build_script:
2017-03-07 14:52:02 +01:00
- cmd: cd plist-cil
- cmd: dotnet restore
- cmd: dotnet build -c Release --version-suffix r%APPVEYOR_BUILD_NUMBER%
2016-06-03 16:19:40 +02:00
on_success:
2017-03-07 14:52:02 +01:00
- cmd: dotnet pack -c Release --version-suffix r%APPVEYOR_BUILD_NUMBER%
2017-03-07 14:55:24 +01:00
- ps: Push-AppveyorArtifact "bin\Release\plist-cil.1.15.0-r$($env:APPVEYOR_BUILD_NUMBER).nupkg"