mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
35 lines
1.1 KiB
C#
35 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.IO;
|
|
using System.IO.Pipes;
|
|
using System.Threading;
|
|
using System.Diagnostics;
|
|
|
|
namespace Cosmos.Debug.HostProcess
|
|
{
|
|
public class Program
|
|
{
|
|
static int Main(string[] args)
|
|
{
|
|
Console.ReadLine();
|
|
var xStartInfo = new ProcessStartInfo();
|
|
xStartInfo.FileName = args[0];
|
|
var xArgSB = new StringBuilder();
|
|
foreach (var arg in args.Skip(1))
|
|
{
|
|
xArgSB.AppendFormat("\"{0}\" ", arg);
|
|
}
|
|
xStartInfo.Arguments = xArgSB.ToString();
|
|
xStartInfo.RedirectStandardError = true;
|
|
xStartInfo.RedirectStandardOutput = true;
|
|
xStartInfo.UseShellExecute = false;
|
|
var xProcess = Process.Start(xStartInfo);
|
|
xProcess.WaitForExit();
|
|
Console.WriteLine(xProcess.StandardError.ReadToEnd());
|
|
Console.WriteLine(xProcess.StandardOutput.ReadToEnd());
|
|
return xProcess.ExitCode;
|
|
}
|
|
}
|
|
}
|