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