2021-10-14 18:02:51 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2019-09-23 21:33:25 -07:00
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2020-11-22 14:52:09 -08:00
|
|
|
<TargetFramework>net5</TargetFramework>
|
2019-09-23 21:33:25 -07:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-10-14 18:02:51 +02:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Http" Version="5.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="5.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="5.0.0" />
|
2019-09-23 21:33:25 -07:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\src\KubernetesClient\KubernetesClient.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|