I'm trying to create a shortcut/menu item for attaching a specific process to the debugger in Visual Studio 2013.
As I understood macros are no longer available from 2012 to do it.
I'm also not interested in doing it from the code using Debugger.Launch() method or through the registry like mentioned here: https://msdn.microsoft.com/en-us/library/a329t4ed(v=vs.100).aspx
I just want the user the have a menu item in VS that he can click on whenever he wants to attach the process to the debugger.
What options do I have?
I prefer to write something on my own, but if I must use a plugin, let it be.
Thanks