2022-04-18 14:55:51 -07:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2023-12-01 11:49:56 +01:00
|
|
|
<TargetFrameworks>net6.0;net7.0;net8.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>
|
|
|
|
|
|
2023-11-10 19:40:27 +01:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
|
2023-12-31 10:15:04 +01:00
|
|
|
<PackageReference Include="xunit" Version="2.6.4" />
|
2023-12-13 19:12:32 +01:00
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.5">
|
2022-04-18 14:55:51 -07:00
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Xunit.StaFact" Version="1.1.11" />
|
2023-12-01 00:32:23 +01:00
|
|
|
<PackageReference Include="Moq" Version="4.20.70" />
|
2022-04-18 14:55:51 -07:00
|
|
|
|
|
|
|
|
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
|
|
|
|
|
</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>
|