Esempio n. 1
0
 void OnDetachClicked(object sender, EventArgs e)
 {
     target.Detach();
     target.Dispose();
     target = null;
     SyncUiToTarget();
 }
Esempio n. 2
0
 void OnStopDebuggingClicked(object sender, EventArgs e)
 {
     target.Dispose();
     target = null;
     SyncUiToTarget();
 }
Esempio n. 3
0
 void NewTarget(string commandLine, string arguments, string workingDirectory)
 {
     target = new Target(commandLine, arguments, workingDirectory);
     collectDebugEventsTimer.Enabled = true;
 }