public void Launch(DebuggerInfo debugger)
        {
            var process = Process.Start(this.Profile.GetExecutableFile(), this.Profile.GetCommandLineArguments());

            if (debugger != null)
            {
                debugger.AttachProcess(process);
            }
            else
            {
                App.ReportStatus("Profile launched successfully.");
            }
        }
 public void AttachDebugger(DebuggerInfo debugger)
 {
     debugger.AttachProcess(_process);
 }