private static async Task PushDebugger(BaseDebugger debugger) { stableDebugger.Push(debugger); await debugger.Run(); await DXDebugger.Stop(); }
public static async Task <bool> RunWinApplication(string exePath) { if (!File.Exists(exePath)) { return(false); } await DXDebugger.PushDebugger(new WPFDebugger(exePath)); return(true); }