예제 #1
0
 public static bool RunCommand(
     this IExecutable executable,
     ArgumentString arguments = default,
     byte[]?input             = null,
     bool createWindow        = false)
 {
     return(GitUI.ThreadHelper.JoinableTaskFactory.Run(
                () => executable.RunCommandAsync(arguments, input, createWindow)));
 }