Hide cmd window

This commit is contained in:
Hubert Mattusch 2022-11-28 18:37:59 +01:00
parent 425c0a7251
commit 1e3aa619eb

View File

@ -73,7 +73,7 @@ public static class BuildingUtils
var processInfo = new ProcessStartInfo("cmd.exe", $"/c {command}")
{
CreateNoWindow = false,
CreateNoWindow = true,
UseShellExecute = false
};
var process = Process.Start(processInfo);