I want to attach a process to my current opened visual studio application.
I have tried ..
process proc = new process();
proc.startinfo.filename = "vsjitdebugger.exe";
proc.startinfo.arguments = "-p 2345";
proc.start();
but in this a new debugger is being created and continue prompting me to do few steps.
I want to attach the '2345' process to current visual studio solution using visual studio command line tools.
someone pls help me out ...