Skip to content

Commit

Permalink
fix: Remove .NET Standard libraries from .NET Framework target (#2896)
Browse files Browse the repository at this point in the history
  • Loading branch information
chynesNR authored Nov 22, 2024
1 parent 4634356 commit 0873941
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Agent/NewRelic/Agent/Core/Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="SharpZipLib" Version="1.4.2" />
<!-- 1.3.3 is the latest package of SharpZipLib that still has a .NET Framework target. Later versions
only have a .NET Standard target -->
<PackageReference Include="SharpZipLib" Version="1.3.3" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="8.0.1" />
</ItemGroup>

Expand Down

0 comments on commit 0873941

Please sign in to comment.