mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
17 lines
378 B
C#
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");
|
|
}
|
|
}
|
|
}
|