Skip to content

Commit

Permalink
set CreateNoWindow to false
Browse files Browse the repository at this point in the history
  • Loading branch information
AlphaBs committed Jun 7, 2024
1 parent 3902286 commit 2f026f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ProcessBuilder/ProcessWrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public ProcessWrapper(Process process)

public void StartWithEvents()
{
Process.StartInfo.CreateNoWindow = true;
Process.StartInfo.CreateNoWindow = false;
Process.StartInfo.WindowStyle = ProcessWindowStyle.Normal;
Process.StartInfo.UseShellExecute = false;
Process.StartInfo.RedirectStandardError = true;
Expand Down

0 comments on commit 2f026f7

Please sign in to comment.