2022-02-20 14:34:10 -08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2021-05-19 19:46:31 +02:00
|
|
|
|
2023-09-26 11:03:12 -07:00
|
|
|
<PropertyGroup>
|
2023-12-01 11:49:56 +01:00
|
|
|
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
|
2023-09-26 11:03:12 -07:00
|
|
|
<RootNamespace>k8s</RootNamespace>
|
2023-10-10 09:49:47 -07:00
|
|
|
<!-- seems bug in net7 json generator, some types missing in its result
|
|
|
|
|
net8 is still in preview, will enable it after net8 release -->
|
|
|
|
|
<!-- <PublishAot Condition="'$(TargetFramework)' == 'net8.0'">true</PublishAot> -->
|
|
|
|
|
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
|
2023-09-26 11:03:12 -07:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-01-06 09:00:53 +01:00
|
|
|
<PackageReference Include="prometheus-net" Version="8.2.1" />
|
2024-01-10 13:21:02 +01:00
|
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="7.1.2" />
|
2023-09-26 11:03:12 -07:00
|
|
|
<PackageReference Include="IdentityModel.OidcClient" Version="5.2.1" />
|
2023-10-02 11:07:45 -07:00
|
|
|
<PackageReference Include="Fractions" Version="7.3.0" />
|
2024-01-26 23:44:04 +01:00
|
|
|
<PackageReference Include="YamlDotNet" Version="15.1.0" />
|
2023-09-26 11:03:12 -07:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-10-10 09:49:47 -07:00
|
|
|
<ProjectReference Include="..\LibKubernetesGenerator\generators\LibKubernetesGenerator\LibKubernetesGenerator.csproj"
|
2023-09-26 11:03:12 -07:00
|
|
|
OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|