diff --git a/UnoCheck/Checkups/DotNetNewUnoTemplatesCheckup.cs b/UnoCheck/Checkups/DotNetNewUnoTemplatesCheckup.cs index c8298567..716b7baf 100644 --- a/UnoCheck/Checkups/DotNetNewUnoTemplatesCheckup.cs +++ b/UnoCheck/Checkups/DotNetNewUnoTemplatesCheckup.cs @@ -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;