Skip to content

Commit

Permalink
chore: debug4 - DROP THIS COMMIT BEFORE MERGING
Browse files Browse the repository at this point in the history
  • Loading branch information
ramezgerges committed Jan 31, 2024
1 parent 10404ca commit 174cc02
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions UnoCheck/Checkups/DotNetNewUnoTemplatesCheckup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ private string GetDotNetNewInstalledList(SharedState? history)

// Running 'dotnet new uninstall' without any package ID will list all installed
// dotnet new templates along with their versions.
Util.Log($"RAMEZ {dotnetCommand} --version");
ShellProcessRunner.Run(dotnetCommand, "--version");
Util.Log($"RAMEZ dotnet --version");
ShellProcessRunner.Run("dotnet", "--version");
var processInfo = new ProcessStartInfo(dotnetCommand, "new uninstall");
processInfo.RedirectStandardOutput = true;
processInfo.UseShellExecute = false;
Expand Down

0 comments on commit 174cc02

Please sign in to comment.