2022-08-21 13:29:36 -07:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-11-01 12:30:51 -08:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
<SignAssembly>true</SignAssembly>
|
|
|
|
|
<RootNamespace>k8s.E2E</RootNamespace>
|
2022-12-15 18:21:36 -08:00
|
|
|
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
|
2020-11-01 12:30:51 -08:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
2023-03-10 10:24:40 -08:00
|
|
|
<PackageReference Include="JsonPatch.Net" Version="2.0.6" />
|
2023-01-30 02:44:51 -08:00
|
|
|
<PackageReference Include="SharpZipLib" Version="1.4.2" />
|
2020-11-17 10:38:05 -08:00
|
|
|
|
2023-06-07 07:10:13 -07:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.2" />
|
2020-11-25 08:16:39 -08:00
|
|
|
|
2021-10-14 18:02:51 +02:00
|
|
|
<PackageReference Include="Nito.AsyncEx.Coordination" Version="5.1.2" />
|
2022-08-08 12:29:58 -07:00
|
|
|
<PackageReference Include="xunit" Version="2.4.2" />
|
2022-07-08 07:59:46 -07:00
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
|
2020-11-01 12:30:51 -08:00
|
|
|
<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" />
|
2023-03-13 13:46:48 -07:00
|
|
|
<ProjectReference Include="..\..\src\KubernetesClient.Kubectl\KubernetesClient.Kubectl.csproj" />
|
2020-11-01 12:30:51 -08:00
|
|
|
<ProjectReference Include="..\SkipTestLogger\SkipTestLogger.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-07-11 09:01:48 -07:00
|
|
|
<PackageReference Update="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.3.2" />
|
2020-11-01 12:30:51 -08:00
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|