26 строки
461 B
YAML
26 строки
461 B
YAML
image: Visual Studio 2017
|
|
configuration: Release
|
|
platform: Any CPU
|
|
|
|
before_build:
|
|
- cmd: dotnet restore
|
|
|
|
build:
|
|
project: package.sln
|
|
parallel: true
|
|
verbosity: minimal
|
|
|
|
after_build:
|
|
- choco install opencover.portable
|
|
- choco install codecov
|
|
|
|
test_script:
|
|
- OpenCover.Console.exe -register:user -target:"C:\Program Files\dotnet\dotnet.exe" -targetargs:"test"
|
|
|
|
after_test:
|
|
- codecov -f "results.xml"
|
|
|
|
artifacts:
|
|
- path: '**\Unity.*.nupkg'
|
|
name: 'Unity'
|