Skip to content

Commit

Permalink
feat: add net6.0 target framework
Browse files Browse the repository at this point in the history
  • Loading branch information
phnx47 committed Aug 28, 2022
1 parent ced97c8 commit 1ba89b3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Prometheus.Client.HealthChecks.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<Description>HealthChecks middleware for the Prometheus.Client</Description>
<VersionPrefix>1.0.0</VersionPrefix>
<TargetFrameworks>netstandard2.0;netstandard2.1;net5.0</TargetFrameworks>
<TargetFrameworks>netstandard2.0;netstandard2.1;net5.0;net6.0</TargetFrameworks>
<PackageId>Prometheus.Client.HealthChecks</PackageId>
<PackageTags>prometheus;metrics</PackageTags>
<PackageIcon>icon.png</PackageIcon>
Expand Down Expand Up @@ -30,4 +30,7 @@
<ItemGroup Condition="'$(TargetFramework)' == 'net5.0'">
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks" Version="5.0.17" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks" Version="6.0.8" />
</ItemGroup>
</Project>

0 comments on commit 1ba89b3

Please sign in to comment.