* generate based on v1.32 * bump ver * Delete swagger.json.unprocessed * Update target frameworks and SDK versions in project files * Remove extra API endpoint from swagger.json * Update .NET SDK version to 9.0.x and adjust package references * happy build * Enhance certificate handling for .NET 9.0 compatibility in CertUtils and KubernetesClientConfiguration * Add mapping for V1beta1ResourceClaim to V1ResourceClaim in AutoMapper configurations * Refactor certificate loading to improve compatibility with .NET 9.0 * Update package versions in Directory.Packages.props for improved compatibility and features * Update Fractions package version to 7.3.0 for improved compatibility
32 lines
1017 B
XML
32 lines
1017 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<IsPackable>false</IsPackable>
|
|
<RootNamespace>k8s.E2E</RootNamespace>
|
|
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="JsonPatch.Net" />
|
|
<PackageReference Include="SharpZipLib" />
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" />
|
|
|
|
<PackageReference Include="Nito.AsyncEx.Coordination" />
|
|
<PackageReference Include="xunit" />
|
|
<PackageReference Include="xunit.runner.visualstudio">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\KubernetesClient\KubernetesClient.csproj" />
|
|
<ProjectReference Include="..\..\src\KubernetesClient.Kubectl\KubernetesClient.Kubectl.csproj" />
|
|
<ProjectReference Include="..\SkipTestLogger\SkipTestLogger.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
</ItemGroup>
|
|
</Project>
|