Skip to content

Commit 589f6fa

Browse files
authored
Update appveyor.yml
1 parent 1aef56c commit 589f6fa

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

appveyor.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ configuration: Release
33
platform: Any CPU
44

55
install:
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

99
dotnet_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"

0 commit comments

Comments
 (0)