We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
System.Text.Json
1 parent 76e9f66 commit 767e7abCopy full SHA for 767e7ab
src/Sentry/Sentry.csproj
@@ -82,7 +82,13 @@
82
83
<!-- Ensure at least version 6 of System.Text.Json so we have JsonSerializationContext available -->
84
<ItemGroup Condition="!$(TargetFramework.StartsWith('net6')) and !$(TargetFramework.StartsWith('net7')) and !$(TargetFramework.StartsWith('net8'))">
85
- <PackageReference Include="System.Text.Json" Version="6.0.8" />
+ <PackageReference Include="System.Text.Json" Version="6.0.8" >
86
+ <!--
87
+ Ignoring the vulnerability warning: https://github.com/advisories/GHSA-hh2w-p6rv-4g7w
88
+ The app can/should pin to the latest version. We will bump once a patch on v6 (still LTS until Nov 24) is out
89
+ -->
90
+ <NoWarn>NU1903</NoWarn>
91
+ </PackageReference>
92
</ItemGroup>
93
94
<!--
0 commit comments