Replies: 2 comments
-
I fixed the issue by adding references to buggy System libraries directly into project <!-- Referenced directly to resolve security issues -->
<ItemGroup>
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="System.Text.Encodings.Web" Version="6.0.0" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
</ItemGroup> |
Beta Was this translation helpful? Give feedback.
0 replies
-
Those transitive dependencies may be related to your installed PackageReferences. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm calling
dotnet list package --include-transitive --vulnerable
to get list of security issues both for direct and indirect dependencies.In response I get this:
The problems are not related to .NET 6.0 which I'm using.
Is this a bug or did I get it wrong ?
Contents of
global.json
fileInstalled SDKs
System:
MacOS 11.6 (Big Sur)
Beta Was this translation helpful? Give feedback.
All reactions