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 15c1fd9 commit dd9183cCopy full SHA for dd9183c
csharp/extractor/Semmle.Extraction.CSharp.DependencyFetching/DotNet.cs
@@ -91,9 +91,9 @@ public bool AddPackage(string folder, string package)
91
return dotnetCliInvoker.RunCommand(args);
92
}
93
94
- public IList<string> GetListedRuntimes() => GetResultList("--list-runtimes", null, true);
+ public IList<string> GetListedRuntimes() => GetResultList("--list-runtimes");
95
96
- public IList<string> GetListedSdks() => GetResultList("--list-sdks", null, true);
+ public IList<string> GetListedSdks() => GetResultList("--list-sdks");
97
98
private IList<string> GetResultList(string args, string? workingDirectory = null, bool silent = true)
99
{
0 commit comments