Add direct reference to xunit.runner.utility (#10271)

Add direct reference to xunit.runner.utility to the IntegrationTests csproj
Add the Directory.Packages.props value.  This uses the version integration tests are attempting to load.
This commit is contained in:
Phil Allen 2024-04-18 08:43:03 -07:00 коммит произвёл GitHub
Родитель f6e1552038
Коммит 42ae9ba07c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -121,6 +121,7 @@
<PackageVersion Include="xunit" Version="$(_XunitPackageVersion)" /> <PackageVersion Include="xunit" Version="$(_XunitPackageVersion)" />
<PackageVersion Include="Xunit.Combinatorial" Version="1.5.25" /> <PackageVersion Include="Xunit.Combinatorial" Version="1.5.25" />
<PackageVersion Include="xunit.extensibility.execution" Version="$(_XunitPackageVersion)" /> <PackageVersion Include="xunit.extensibility.execution" Version="$(_XunitPackageVersion)" />
<PackageVersion Include="xunit.runner.utility" Version="2.4.1" />
<PackageVersion Include="Xunit.StaFact" Version="1.2.46-alpha" /> <PackageVersion Include="Xunit.StaFact" Version="1.2.46-alpha" />
</ItemGroup> </ItemGroup>
</Project> </Project>

Просмотреть файл

@ -35,6 +35,7 @@
<PackageReference Include="NuGet.SolutionRestoreManager.Interop" /> <PackageReference Include="NuGet.SolutionRestoreManager.Interop" />
<PackageReference Include="Microsoft.Internal.VisualStudio.Shell.Framework" /> <PackageReference Include="Microsoft.Internal.VisualStudio.Shell.Framework" />
<PackageReference Include="xunit" /> <PackageReference Include="xunit" />
<PackageReference Include="xunit.runner.utility" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>