When I want to debug I have to do Debug->Attach to Process -> Look for a process in the list -> Attach.

I was wondering if I can create some kind of a sort cut to do this for me?

link|improve this question

70% accept rate
feedback

3 Answers

up vote 3 down vote accepted

The easiest way to do this is to write a macro which finds the DTE.LocalProcess you wan to target and automatically attach. For example

Public Sub AttachShortcut()
  For Each proc In DTE.Debugger.LocalProcesses 
    If proc.Name = "what you're looking for" Then
      proc.Attach()
      Exit Sub
    End IF
  Next
End Sub

Note: This Stack Overflow Question is related and has a sample you may find useful

link|improve this answer
feedback

Writing a macro is one option, however it cannot deduct which process to attach to by itself.

Another nice solution is to map the "Attach to process" command to a shortcut key:

(Tools -> Options -> Keyboard, type attach, like i did in this example, and select a shortcut key):

enter image description here

link|improve this answer
yes. this will open up attach to process window. the above macro goes further. it finds the process and attaches. – dev.e.loper Jul 15 '11 at 14:03
i was not sure which process it is that he's after. starting to like macros more and more recently :) – lysergic-acid Jul 15 '11 at 14:45
feedback

I like having buttons to do this on my debug toolbar

https://gist.github.com/1406827

The gist contains a method for attaching to IIS (w3wp.exe) or ASP (aspnet_wp.exe) and also nunit (nunit-agent.exe). Instructions are included on how to add the macros to your debug toolbar.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.