2024-01-29 13:58:22 -08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
<RootNamespace>k8s.E2E</RootNamespace>
|
|
|
|
|
<TargetFrameworks>net8.0</TargetFrameworks>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
2024-06-16 12:41:28 +08:00
|
|
|
<PackageReference Include="JsonPatch.Net" />
|
|
|
|
|
<PackageReference Include="SharpZipLib" />
|
2024-01-29 13:58:22 -08:00
|
|
|
|
2024-06-16 12:41:28 +08:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" />
|
2024-01-29 13:58:22 -08:00
|
|
|
|
2024-06-16 12:41:28 +08:00
|
|
|
<PackageReference Include="Nito.AsyncEx.Coordination" />
|
|
|
|
|
<PackageReference Include="xunit" />
|
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio">
|
2024-01-29 13:58:22 -08:00
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\src\KubernetesClient.Aot\KubernetesClient.Aot.csproj" />
|
|
|
|
|
<ProjectReference Include="..\SkipTestLogger\SkipTestLogger.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-06-16 12:41:28 +08:00
|
|
|
|
2024-01-29 13:58:22 -08:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="..\E2E.Tests\MinikubeFactAttribute.cs" />
|
|
|
|
|
<Compile Include="..\E2E.Tests\Onebyone.cs" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|