Skip to content
This repository has been archived by the owner on Jan 7, 2021. It is now read-only.

Commit

Permalink
Use latest xunit console runner on appveyor.
Browse files Browse the repository at this point in the history
  • Loading branch information
AraHaan committed Sep 19, 2018
1 parent a6d0ec7 commit 102c96d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions XmlAbstraction.Test/XmlAbstraction.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@
<PackageReference Include="xunit">
<Version>2.4.1-pre.build.4059</Version>
</PackageReference>
<PackageReference Include="xunit.runner.console" Version="2.4.1-pre.build.4059">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1-pre.build.4059">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 1.0.0.0-alpha{build}
version: 1.0.1.0-alpha{build}
branches:
only:
- master
Expand All @@ -17,7 +17,7 @@ build:
verbosity: minimal
test_script:
- cmd: >-
"%UserProfile%\.nuget\packages\opencover\4.6.519\tools\OpenCover.Console.exe" -register:user -target:"%xunit20%\xunit.console.x86.exe" -targetargs:".\XmlAbstraction.Test\bin\Release\net472\XmlAbstraction.Test.dll -noshadow" -filter:"+[XmlAbstraction*]* -[XmlAbstraction.Test*]*" -output:".\XmlAbstraction_coverage.xml"
"%UserProfile%\.nuget\packages\opencover\4.6.519\tools\OpenCover.Console.exe" -register:user -target:"%UserProfile%\.nuget\packages\xunit.runner.console\2.4.1-pre.build.4059\tools\net472\xunit.console.x86.exe" -targetargs:".\XmlAbstraction.Test\bin\Release\net472\XmlAbstraction.Test.dll -noshadow" -filter:"+[XmlAbstraction*]* -[XmlAbstraction.Test*]*" -output:".\XmlAbstraction_coverage.xml"
"%UserProfile%\.nuget\packages\Codecov\1.1.0\tools\codecov.exe" -f ".\XmlAbstraction_coverage.xml"
deploy:
Expand Down

0 comments on commit 102c96d

Please sign in to comment.