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 78c732d commit 280a27dCopy full SHA for 280a27d
csharp/extractor/Semmle.Extraction.CSharp.Standalone/DotNet.cs
@@ -78,7 +78,8 @@ public bool AddPackage(string folder, string package)
78
79
public IList<string> GetListedRuntimes()
80
{
81
- var args = "--list-runtimes";
+ const string args = "--list-runtimes";
82
+ progressMonitor.RunningProcess($"{dotnet} {args}");
83
var pi = new ProcessStartInfo(dotnet, args)
84
85
RedirectStandardOutput = true,
@@ -90,6 +91,7 @@ public IList<string> GetListedRuntimes()
90
91
progressMonitor.CommandFailed(dotnet, args, exitCode);
92
return new List<string>();
93
}
94
+ progressMonitor.LogInfo($"Found runtimes: {string.Join("\n", runtimes)}");
95
return runtimes;
96
97
0 commit comments