2020-11-01 12:30:51 -08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
<SignAssembly>true</SignAssembly>
|
|
|
|
|
<RootNamespace>k8s.E2E</RootNamespace>
|
2020-11-17 10:38:05 -08:00
|
|
|
<TargetFramework>net5.0</TargetFramework>
|
2020-11-01 12:30:51 -08:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
2020-11-17 10:38:05 -08:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="5.0.0" />
|
|
|
|
|
|
2021-04-09 13:37:17 -07:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
|
2020-11-25 08:16:39 -08:00
|
|
|
|
|
|
|
|
<PackageReference Include="Nito.AsyncEx.Coordination" Version="5.1.0" />
|
2020-11-01 12:30:51 -08:00
|
|
|
<PackageReference Include="xunit" Version="2.4.1" />
|
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\src\KubernetesClient\KubernetesClient.csproj" />
|
|
|
|
|
<ProjectReference Include="..\SkipTestLogger\SkipTestLogger.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Update="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.3.1" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|