Files
coverlet/appveyor.yml
T
2018-04-13 01:07:38 +01:00

10 lines
452 B
YAML

version: '{build}'
configuration:
- Debug
- Release
build_script:
- echo "Building for %CONFIGURATION%"
- dotnet msbuild build.proj /p:Configuration=%CONFIGURATION%
test_script:
- ps: if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
- cmd: IF "%CONFIGURATION%"=="Release" ( %USERPROFILE%\.nuget\packages\coveralls.net\0.7.0\tools\csmacnz.Coveralls.exe --opencover -i test\coverlet.core.tests\coverage.xml --useRelativePaths )