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.
1 parent c68d36e commit 216d6c0Copy full SHA for 216d6c0
csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/DependencyManager.cs
@@ -167,7 +167,7 @@ private HashSet<string> AddFrameworkDlls(HashSet<string> dllPaths)
167
RemoveNugetPackageReference(FrameworkPackageNames.AspNetCoreFramework, dllPaths);
168
RemoveNugetPackageReference(FrameworkPackageNames.WindowsDesktopFramework, dllPaths);
169
170
- var frameworkPaths = frameworkReferences.Split(FileUtils.NewLineCharacters, StringSplitOptions.RemoveEmptyEntries);
+ var frameworkPaths = frameworkReferences.Split(Path.PathSeparator, StringSplitOptions.RemoveEmptyEntries);
171
172
foreach (var path in frameworkPaths)
173
{
0 commit comments