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