Exemple #1
0
        private static async Task PushDebugger(BaseDebugger debugger)
        {
            stableDebugger.Push(debugger);

            await debugger.Run();

            await DXDebugger.Stop();
        }
Exemple #2
0
        public static async Task <bool> RunWinApplication(string exePath)
        {
            if (!File.Exists(exePath))
            {
                return(false);
            }

            await DXDebugger.PushDebugger(new WPFDebugger(exePath));

            return(true);
        }