Skip to content

Commit

Permalink
Fix some xUnit test discovery issues (#6584)
Browse files Browse the repository at this point in the history
(cherry picked from commit 4293749)
  • Loading branch information
ReubenBond authored and sergeybykov committed Jun 30, 2020
1 parent 5fc3478 commit 65aa69c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Expand Up @@ -13,7 +13,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="xunit" Version="$(xUnitVersion)" />
<PackageReference Include="xunit.extensibility.core" Version="$(xUnitVersion)" />
<PackageReference Include="xunit.extensibility.execution" Version="$(xUnitVersion)" />
<PackageReference Include="xunit.assert" Version="$(xUnitVersion)" />
<PackageReference Include="Xunit.SkippableFact" Version="$(XunitSkippableFactVersion)" />
</ItemGroup>

Expand Down
6 changes: 3 additions & 3 deletions test/TestInfrastructure/TestExtensions/TestExtensions.csproj
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>TestExtensions</AssemblyName>
<RootNamespace>TestExtensions</RootNamespace>
Expand All @@ -8,8 +8,8 @@
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="$(MicrosoftExtensionsConfigurationEnvironmentVariablesVersion)" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="$(MicrosoftExtensionsConfigurationJsonVersion)" />
<PackageReference Include="xunit" Version="$(xUnitVersion)" />
<PackageReference Include="xunit.core" Version="$(xUnitVersion)" />
<PackageReference Include="xunit.assert" Version="$(xUnitVersion)" />
<PackageReference Include="xunit.extensibility.core" Version="$(xUnitVersion)" />
<PackageReference Include="xunit.extensibility.execution" Version="$(xUnitVersion)" />
<PackageReference Include="Xunit.SkippableFact" Version="$(XunitSkippableFactVersion)" />
<PackageReference Include="FluentAssertions" Version="$(FluentAssertionsVersion)" />
Expand Down

0 comments on commit 65aa69c

Please sign in to comment.