Replies: 1 comment 1 reply
-
Inspect this attribute? I'm not sure whether it's accurate. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm working on a tool to assess the use of NuGet packages in a C# project. However, I have run into an issue regarding how to distinguish between packages published by Microsoft and those bundled with the SDK? In both cases, the namespace is either
System.*
orMicrosoft.*
, which means I can't use that reliably.Is there maybe another way to extract this from the assembly metadata? The runtime itself? If the answer is there is no automatic way to determine this, do there exist an official list of packages bundled with the SDK?
The tool is not an analyzer or a source generator, but it is using Roslyn if that opens up some possibilities.
Beta Was this translation helpful? Give feedback.
All reactions