File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" utf-8" ?>
22<packages >
3- <package id =" Codecov" version =" 1.0.1 " />
3+ <package id =" Codecov" version =" 1.1.0 " />
44 <package id =" Microsoft.DiaSymReader.Pdb2Pdb" version =" 1.1.0-beta1-62624-01" />
55 <package id =" OpenCover" version =" 4.6.519" />
66 <package id =" ReportGenerator" version =" 2.3.5.0" targetFramework =" net452" />
Original file line number Diff line number Diff line change @@ -16,7 +16,10 @@ test_script:
1616 if ($env:Configuration -eq 'Debug') {
1717 .\opencover-report.ps1 -Debug -NoBuild -NoReport -AppVeyor
1818 if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
19- ..\packages\Codecov.1.0.1\tools\codecov.exe -f '..\build\OpenCover.Reports\OpenCover.DocumentationAnalyzers.xml'
19+ $packageConfig = [xml](Get-Content ..\.nuget\packages.config)
20+ $codecov_version = $packageConfig.SelectSingleNode('/packages/package[@id="Codecov"]').version
21+ $codecov = "..\packages\Codecov.$codecov_version\tools\codecov.exe"
22+ &$codecov -f '..\build\OpenCover.Reports\OpenCover.DocumentationAnalyzers.xml'
2023 } else {
2124 .\opencover-report.ps1 -NoBuild -NoReport -AppVeyor
2225 if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
You can’t perform that action at this time.
0 commit comments