Skip to content

Commit

Permalink
feat: add net462 target
Browse files Browse the repository at this point in the history
  • Loading branch information
phnx47 committed Nov 13, 2024
1 parent 92e614a commit 4afa17a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Prometheus.Client/Prometheus.Client.csproj
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
<TargetFrameworks>net462;netstandard2.0;net6.0</TargetFrameworks>
<Description>.NET client for Prometheus</Description>
<RepositoryUrl>https://github.com/prom-client-net/prom-client</RepositoryUrl>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<ItemGroup Condition="'$(TargetFramework)' == 'net462' OR '$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="System.Memory" Version="4.6.0" />
</ItemGroup>
<ItemGroup>
Expand Down

0 comments on commit 4afa17a

Please sign in to comment.