Ejemplo n.º 1
0
        public static ExecutableResults Execute(string exePath, string workingDir, params string[] arguments)
        {
            ExecutableWrapper wrapper = new ExecutableWrapper(exePath);

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