2022-04-03 16:35:42 -07:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2017-07-24 20:56:24 +02:00
|
|
|
<PropertyGroup>
|
2017-06-22 22:41:42 +02:00
|
|
|
<IsPackable>false</IsPackable>
|
2020-04-14 20:08:03 -04:00
|
|
|
<RootNamespace>k8s.Tests</RootNamespace>
|
2025-01-07 07:12:29 -08:00
|
|
|
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
|
2017-06-22 22:41:42 +02:00
|
|
|
</PropertyGroup>
|
2018-03-20 16:03:28 +11:00
|
|
|
|
2017-06-22 22:41:42 +02:00
|
|
|
<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" />
|
2025-04-17 10:13:07 -07:00
|
|
|
<PackageReference Include="Wiremock.Net" />
|
2017-06-22 22:41:42 +02:00
|
|
|
</ItemGroup>
|
2018-03-20 16:03:28 +11:00
|
|
|
|
|
|
|
|
<ItemGroup>
|
2019-03-04 16:12:39 -08:00
|
|
|
|
2024-06-16 12:41:28 +08:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" />
|
|
|
|
|
<PackageReference Include="xunit" />
|
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio">
|
2020-11-22 14:52:09 -08: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" />
|
2018-03-20 16:03:28 +11:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2017-06-26 23:09:42 +02:00
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="assets/*" CopyToOutputDirectory="Always" />
|
2017-07-24 20:56:24 +02:00
|
|
|
</ItemGroup>
|
2018-03-20 16:03:28 +11:00
|
|
|
|
2021-08-04 10:51:25 -04:00
|
|
|
<ItemGroup>
|
2022-09-05 12:52:54 -07:00
|
|
|
<ProjectReference Include="..\..\src\KubernetesClient\KubernetesClient.csproj" />
|
2021-08-04 10:51:25 -04:00
|
|
|
</ItemGroup>
|
2017-09-28 09:44:08 -07:00
|
|
|
</Project>
|