This is an automated email from the ASF dual-hosted git repository. florianhockmann pushed a commit to branch TINKERPOP-2577 in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
commit 869222803e03ad018497da6f10167870d0976a4f Author: Florian Hockmann <[email protected]> AuthorDate: Tue Jun 8 15:40:35 2021 +0200 TINKERPOP-2577 Remove unneeded xUnit tools `dotnet-xunit` is deprecated. It's enough to use `xunit.runner.visualstudio`. `xunit.runner.console` is only needed to run .NET Framework tests. This is probably a leftover from very old pre-TinkerPop days when the tests were also executed on .NET Framework in addition to .NET Core. Documentation for these packages: https://xunit.net/docs/nuget-packages --- .../test/Gremlin.Net.IntegrationTest/Gremlin.Net.IntegrationTest.csproj | 1 - .../Gremlin.Net.Template.IntegrationTest.csproj | 1 - 2 files changed, 2 deletions(-) diff --git a/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gremlin.Net.IntegrationTest.csproj b/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gremlin.Net.IntegrationTest.csproj index 825a6a1..78cebcc 100644 --- a/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gremlin.Net.IntegrationTest.csproj +++ b/gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gremlin.Net.IntegrationTest.csproj @@ -17,7 +17,6 @@ <PackageReference Include="xunit" Version="2.2.0" /> <PackageReference Include="Microsoft.Extensions.Configuration" Version="1.1.1" /> <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="1.1.1" /> - <PackageReference Include="xunit.runner.console" Version="2.2.0" /> </ItemGroup> <ItemGroup> <Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" /> diff --git a/gremlin-dotnet/test/Gremlin.Net.Template.IntegrationTest/Gremlin.Net.Template.IntegrationTest.csproj b/gremlin-dotnet/test/Gremlin.Net.Template.IntegrationTest/Gremlin.Net.Template.IntegrationTest.csproj index ceb3c97..1ae5dc6 100644 --- a/gremlin-dotnet/test/Gremlin.Net.Template.IntegrationTest/Gremlin.Net.Template.IntegrationTest.csproj +++ b/gremlin-dotnet/test/Gremlin.Net.Template.IntegrationTest/Gremlin.Net.Template.IntegrationTest.csproj @@ -8,7 +8,6 @@ <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.5.0" /> <PackageReference Include="xunit" Version="2.3.1" /> <PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" /> - <DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" /> </ItemGroup> <ItemGroup>
