2022-04-18 14:55:51 -07:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2025-01-07 07:12:29 -08:00
|
|
|
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
|
2022-04-18 14:55:51 -07:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
<RootNamespace>k8s.kubectl.Tests</RootNamespace>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
2024-06-16 12:41:28 +08:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" />
|
|
|
|
|
<PackageReference Include="xunit" />
|
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio">
|
2022-04-18 14:55:51 -07:00
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2024-06-16 12:41:28 +08:00
|
|
|
<PackageReference Include="Xunit.StaFact" />
|
|
|
|
|
<PackageReference Include="Moq" />
|
2022-04-18 14:55:51 -07:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\src\KubernetesClient.Kubectl\KubernetesClient.Kubectl.csproj" />
|
|
|
|
|
<ProjectReference Include="..\E2E.Tests\E2E.Tests.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<AdditionalFiles Include="..\..\swagger.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</AdditionalFiles>
|
|
|
|
|
</ItemGroup>
|
2023-02-11 14:31:30 +01:00
|
|
|
</Project>
|