Skip to content

Commit 0873941

Browse files
authored
fix: Remove .NET Standard libraries from .NET Framework target (#2896)
1 parent 4634356 commit 0873941

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Agent/NewRelic/Agent/Core/Core.csproj

+3-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@
5555
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
5656
</PackageReference>
5757
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
58-
<PackageReference Include="SharpZipLib" Version="1.4.2" />
58+
<!-- 1.3.3 is the latest package of SharpZipLib that still has a .NET Framework target. Later versions
59+
only have a .NET Standard target -->
60+
<PackageReference Include="SharpZipLib" Version="1.3.3" />
5961
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="8.0.1" />
6062
</ItemGroup>
6163

0 commit comments

Comments
 (0)