File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ configuration: Release
33platform : Any CPU
44
55install :
6- - ps : $env:build_version = (Select-Xml -Path ".\package.props" -XPath "/Project/PropertyGroup/Version" | Select-Object -ExpandProperty Node).InnerText
7- - ps : Update-AppveyorBuild -Version "$env:build_version.$env:APPVEYOR_BUILD_NUMBER"
6+ - ps : $env:build_version = (Select-Xml -Path ".\package.props" -XPath "/Project/PropertyGroup/Version" | Select-Object -ExpandProperty Node).InnerText
7+ - ps : Update-AppveyorBuild -Version "$env:build_version.$env:APPVEYOR_BUILD_NUMBER"
88
99dotnet_csproj :
1010 patch : false
@@ -17,3 +17,12 @@ build:
1717 parallel : true
1818 verbosity : minimal
1919
20+ after_build :
21+ - choco install opencover.portable
22+ - choco install codecov
23+
24+ test_script :
25+ - OpenCover.Console.exe -register:user -target:"C:\Program Files\dotnet\dotnet.exe" -targetargs:"test --framework net47 --verbosity q"
26+
27+ after_test :
28+ - codecov -f "results.xml"
You can’t perform that action at this time.
0 commit comments