Cosmos/source2/Debug/Cosmos.Debug.HostProcess/Program.cs
kudzu_cp 5bcabb8d8c
2012-07-01 18:05:01 +00:00

17 lines
378 B
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.Launch.VMware {
public class Program {
static int Main(string[] aArgs) {
var xHost = new DebugHost(aArgs);
return xHost.Go("VMware");
}
}
}