2023-04-12 11:53:55 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
<RootNamespace>KubernetesWorkflow</RootNamespace>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="KubernetesClient" Version="10.1.4" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2023-04-12 13:11:36 +00:00
|
|
|
<ItemGroup>
|
2023-04-25 09:31:15 +00:00
|
|
|
<ProjectReference Include="..\Logging\Logging.csproj" />
|
2023-04-12 13:11:36 +00:00
|
|
|
<ProjectReference Include="..\Utils\Utils.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2023-04-12 11:53:55 +00:00
|
|
|
</Project>
|