Bumps [prometheus-net](https://github.com/prometheus-net/prometheus-net) from 8.0.1 to 8.1.0. - [Release notes](https://github.com/prometheus-net/prometheus-net/releases) - [Changelog](https://github.com/prometheus-net/prometheus-net/blob/master/History) - [Commits](https://github.com/prometheus-net/prometheus-net/compare/v8.0.1...v8.1.0) --- updated-dependencies: - dependency-name: prometheus-net dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
25 lines
1.1 KiB
XML
25 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
|
|
<RootNamespace>k8s</RootNamespace>
|
|
<!-- 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>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="prometheus-net" Version="8.1.0" />
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="7.0.3" />
|
|
<PackageReference Include="IdentityModel.OidcClient" Version="5.2.1" />
|
|
<PackageReference Include="Fractions" Version="7.3.0" />
|
|
<PackageReference Include="YamlDotNet" Version="13.7.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\LibKubernetesGenerator\generators\LibKubernetesGenerator\LibKubernetesGenerator.csproj"
|
|
OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
|
|
</ItemGroup>
|
|
|
|
</Project> |