@@ -582,7 +582,7 @@ public long StopwatchLogInfo(string className, string message, Action action, [C
582582 public Task < long > StopwatchLogInfoAsync ( string className , string message , Func < Task > action , [ CallerMemberName ] string methodName = "" ) =>
583583 Stopwatch . InfoAsync ( className , message , action , methodName ) ;
584584
585- public bool StartProcess ( string filePath , string workingDirectory = "" , string arguments = "" , bool useShellExecute = true , string verb = "" )
585+ public bool StartProcess ( string filePath , string workingDirectory = "" , string arguments = "" , bool useShellExecute = false , string verb = "" )
586586 {
587587 try
588588 {
@@ -624,7 +624,7 @@ public bool StartProcess(string filePath, string workingDirectory = "", string a
624624 }
625625 }
626626
627- public bool StartProcess ( string filePath , string workingDirectory = "" , Collection < string > argumentList = null , bool useShellExecute = true , string verb = "" ) =>
627+ public bool StartProcess ( string filePath , string workingDirectory = "" , Collection < string > argumentList = null , bool useShellExecute = false , string verb = "" ) =>
628628 StartProcess ( filePath , workingDirectory , JoinArgumentList ( argumentList ) , useShellExecute , verb ) ;
629629
630630 private static string AddDoubleQuotes ( string arg )
0 commit comments