23 lines
597 B
C#
23 lines
597 B
C#
using System;
|
|
using System.Diagnostics;
|
|
|
|
namespace ProjectTestRunner.Helpers
|
|
{
|
|
public class Proc
|
|
{
|
|
public static ProcessEx Run(string command, string args)
|
|
{
|
|
ProcessStartInfo psi = new ProcessStartInfo(command, args)
|
|
{
|
|
RedirectStandardOutput = true,
|
|
RedirectStandardError = true,
|
|
UseShellExecute = false,
|
|
CreateNoWindow = true
|
|
};
|
|
Process p = Process.Start(psi);
|
|
ProcessEx wrapper = new ProcessEx(p);
|
|
return wrapper;
|
|
}
|
|
}
|
|
}
|