2022-12-05 08:59:04 -08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2022-04-03 16:35:42 -07:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
<RootNamespace>k8s.Tests</RootNamespace>
|
2025-01-07 07:12:29 -08:00
|
|
|
<TargetFrameworks Condition="'$(OS)' != 'Windows_NT'">net8.0;net9.0</TargetFrameworks>
|
|
|
|
|
<TargetFrameworks Condition="'$(OS)' == 'Windows_NT'">net8.0;net9.0;net48</TargetFrameworks>
|
2022-04-03 16:35:42 -07:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-06-16 12:41:28 +08:00
|
|
|
<PackageReference Include="MartinCostello.Logging.XUnit" />
|
|
|
|
|
<PackageReference Include="FluentAssertions" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" />
|
|
|
|
|
<PackageReference Include="System.IO.Abstractions.TestingHelpers" />
|
|
|
|
|
<PackageReference Include="System.Reactive" />
|
|
|
|
|
<PackageReference Include="Nito.AsyncEx" />
|
|
|
|
|
<PackageReference Include="Portable.BouncyCastle" />
|
2022-04-03 16:35:42 -07:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<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-03 16:35:42 -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-03 16:35:42 -07:00
|
|
|
</ItemGroup>
|
2025-04-27 12:55:24 -07:00
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Reference Include="System.Net.Http" Condition="'$(TargetFramework)' == 'net48'" />
|
|
|
|
|
</ItemGroup>
|
2022-04-03 16:35:42 -07:00
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\src\KubernetesClient.Classic\KubernetesClient.Classic.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|