File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -2,15 +2,20 @@ platform: Any CPU
22image : Visual Studio 2017
33configuration : Debug
44
5+ environment :
6+ OPENCOVER_VER : 4.6.519
7+ XUNIT_VER : 2.2.0
8+ COVERALLS_VER : 0.412
9+
510before_build :
611 - nuget restore
7- - nuget install xunit.runner.console -Version 2.2.0 -OutputDirectory buildtools
8- - nuget install OpenCover -Version 4.6.519 -OutputDirectory buildtools
9- - nuget install coveralls.net -Version 0.412 -OutputDirectory buildtools
12+ - cmd : nuget install xunit.runner.console -Version %XUNIT_VER% -OutputDirectory buildtools
13+ - cmd : nuget install OpenCover -Version %OPENCOVER_VER% -OutputDirectory buildtools
14+ - cmd : nuget install coveralls.net -Version %COVERALLS_VER% -OutputDirectory buildtools
1015
1116build_script :
1217 - cmd : msbuild /p:Configuration=%CONFIGURATION% HttpWebClient.sln
1318
1419test_script :
15- - cmd : buildtools\OpenCover.4.6.519 \tools\OpenCover.Console.exe -register:user -target:"buildtools\xunit.runner.console.2.2.0 \tools\xunit.console.exe" -targetargs:"HttpWebClient.UnitTests\bin\%CONFIGURATION%\HttpWebClient.UnitTests.dll -noappdomain" -filter:"+[HttpWebClient]*"
20+ - cmd : buildtools\OpenCover.%OPENCOVER_VER% \tools\OpenCover.Console.exe -register:user -target:"buildtools\xunit.runner.console.%XUNIT_VER% \tools\xunit.console.exe" -targetargs:"HttpWebClient.UnitTests\bin\%CONFIGURATION%\HttpWebClient.UnitTests.dll -noappdomain" -filter:"+[HttpWebClient]*"
1621
You can’t perform that action at this time.
0 commit comments