2
0
mirror of synced 2025-01-13 18:14:14 +00:00

21 lines
570 B
XML
Raw Normal View History

2023-04-12 13:53:55 +02:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2023-05-02 12:20:43 +10:00
<TargetFramework>net7.0</TargetFramework>
2023-04-12 13:53:55 +02:00
<RootNamespace>KubernetesWorkflow</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="KubernetesClient" Version="10.1.4" />
2023-09-20 10:51:47 +02:00
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
2023-04-12 13:53:55 +02:00
</ItemGroup>
<ItemGroup>
2023-04-25 11:31:15 +02:00
<ProjectReference Include="..\Logging\Logging.csproj" />
<ProjectReference Include="..\Utils\Utils.csproj" />
</ItemGroup>
2023-04-12 13:53:55 +02:00
</Project>