Cosmos/source/Cosmos.Debug.Client.CLI/Program.cs
mterwoord_cp 0fdb59a7bf
2008-01-03 17:01:25 +00:00

20 lines
662 B
C#

using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Text;
namespace Cosmos.Debug.Client.CLI {
class Program {
static void Main(string[] args) {
string xBasePath = Path.Combine(Path.GetDirectoryName(typeof (Program).Assembly.Location), @"..\..\..\..\Build\Cosmos\");
ProcessStartInfo xProcessInfo = new ProcessStartInfo();
xProcessInfo.FileName = Path.Combine(xBasePath, "Run-QEMU-Debug.ps1");
xProcessInfo.CreateNoWindow = true;
xProcessInfo.WorkingDirectory = xBasePath;
Process.Start(xProcessInfo).WaitForExit();
Console.ReadKey();
}
}
}