mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-22 22:09:12 +00:00
41 lines
1.8 KiB
C#
41 lines
1.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.Build.Windows {
|
|
class Global {
|
|
public static void Call(string aEXEPathname, string aArgLine, string aWorkDir) {
|
|
Call(aEXEPathname, aArgLine, aWorkDir, true, true);
|
|
}
|
|
|
|
public static void Call(string aEXEPathname, string aArgLine, string aWorkDir, bool aWait, bool aCapture) {
|
|
var xStartInfo = new ProcessStartInfo();
|
|
xStartInfo.FileName = aEXEPathname;
|
|
xStartInfo.Arguments = aArgLine;
|
|
xStartInfo.WorkingDirectory = aWorkDir;
|
|
xStartInfo.CreateNoWindow = false;
|
|
xStartInfo.UseShellExecute = !aCapture;
|
|
xStartInfo.RedirectStandardError = aCapture;
|
|
xStartInfo.RedirectStandardOutput = aCapture;
|
|
Console.WriteLine("Please wait...executing " + xStartInfo.FileName + "...");
|
|
var xProcess = Process.Start(xStartInfo);
|
|
if (aWait) {
|
|
if (!xProcess.WaitForExit(60 * 1000) || xProcess.ExitCode != 0) {
|
|
//TODO: Fix
|
|
if (aCapture) {
|
|
Console.ForegroundColor = ConsoleColor.Red;
|
|
Console.WriteLine("Error when executing: " + xStartInfo.FileName + " " +
|
|
xStartInfo.Arguments + " from directory " + xStartInfo.WorkingDirectory);
|
|
Console.Write(xProcess.StandardOutput.ReadToEnd());
|
|
Console.Write(xProcess.StandardError.ReadToEnd());
|
|
} else {
|
|
throw new Exception("Call failed");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|