Exclude nuget packages with prefix runtime. from the references

This commit is contained in:
Tamas Vajk
2023-10-11 14:46:07 +02:00
parent 93380f8cbb
commit e1b283c14a

View File

@@ -225,6 +225,9 @@ namespace Semmle.Extraction.CSharp.DependencyFetching
"runtime.linux-x64.microsoft.netcore.app",
"runtime.osx-x64.microsoft.netcore.app",
"runtime.win-x64.microsoft.netcore.app",
// Internal implementation packages not meant for direct consumption:
"runtime."
};
RemoveNugetPackageReference(runtimePackagePrefixes);
}