Skip to content

Commit

Permalink
fix: Don't create a window while checking dotnet version
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromelaban committed Nov 28, 2021
1 parent 80ad551 commit ca1d8ae
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Uno.UI.RemoteControl.VS/Helpers/ProcessHelpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ public static (int exitCode, string output, string error) RunProcess(string exec
RedirectStandardOutput = true,
RedirectStandardError = true,
FileName = executable,
Arguments = parameters
Arguments = parameters,
CreateNoWindow = true,
WindowStyle = ProcessWindowStyle.Hidden,
}
};

Expand Down

0 comments on commit ca1d8ae

Please sign in to comment.