public static ExecutableResults Execute(string exePath, string workingDir, params string[] arguments) { ExecutableWrapper wrapper = new ExecutableWrapper(exePath); wrapper.WorkingDirectory = workingDir; return(wrapper.Run(arguments)); }
public static ExecutableResults Execute(string exePath, string workingDir, params string[] arguments) { ExecutableWrapper wrapper = new ExecutableWrapper(exePath); wrapper.WorkingDirectory = workingDir; return wrapper.Run(arguments); }