public void Simulate() { if (started) { return; } started = true; if (Debugger.IsAttached) { return; } var a = new VSDebugAttacher(); a.AttachToVisualStudio(); }
public void TestAttach() { var attacher = new VSDebugAttacher(); attacher.AttachToVisualStudio(); }