-
Notifications
You must be signed in to change notification settings - Fork 6
/
appveyor.yml
18 lines (18 loc) · 1.3 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
version: 1.0.{build}
image: Visual Studio 2017
configuration: Debug
init:
- git config --global core.autocrlf true
before_build:
- nuget restore
build:
verbosity: minimal
test_script:
- '%xunit20%\xunit.console.x86 "C:\projects\dotnet-collections\System.Collections.Immutable\tests\bin\%CONFIGURATION%\net20\System.Collections.Immutable.Tests.dll" -appveyor'
- '%xunit20%\xunit.console.x86 "C:\projects\dotnet-collections\System.Collections.Immutable\tests\bin\%CONFIGURATION%\net30\System.Collections.Immutable.Tests.dll" -appveyor'
- '%xunit20%\xunit.console.x86 "C:\projects\dotnet-collections\System.Collections.Immutable\tests\bin\%CONFIGURATION%\net35-client\System.Collections.Immutable.Tests.dll" -appveyor'
- '%xunit20%\xunit.console.x86 "C:\projects\dotnet-collections\System.Collections.Immutable\tests\bin\%CONFIGURATION%\net40-client\System.Collections.Immutable.Tests.dll" -appveyor'
- '%xunit20%\xunit.console.x86 "C:\projects\dotnet-collections\System.Collections.Immutable\tests\bin\%CONFIGURATION%\net40\System.Collections.Immutable.Tests.dll" -appveyor'
- '%xunit20%\xunit.console.x86 "C:\projects\dotnet-collections\System.Collections.Immutable\tests\bin\%CONFIGURATION%\portable-net45+win8+wp8+wpa81\System.Collections.Immutable.Tests.dll" -appveyor'
artifacts:
- path: 'System.Collections.Immutable\**\*.nupkg'