Currently targeting NET Core
project using System.Text.Json 7.0.0
as a Transitive Package will be flagged as high Severity using
dotnet list package --include-transitive --vulnerable
To circumvent, add the following to the project file.
<ItemGroup>
<NuGetAuditSuppress Include="https://github.com/advisories/GHSA-hh2w-p6rv-4g7w" />
</ItemGroup>
At a later time when there is a new version check for warnings via dotnet list package --include-transitive --vulnerable
, if none remove the NuGetAuditSuppress
.