Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Debugging with FF3 in VS2008

I am using Firefox 3 to debug my ASP.NET applications in Visual Studio 2008. How can I configure either FF3 or VS2008 so that when I 'x' out of Firefox I don't have to hit the stop debugging button in Visual Studio? (The behavior you get with IE)

like image 263
ctrlShiftBryan Avatar asked Nov 06 '22 23:11

ctrlShiftBryan


2 Answers

My solution to this has been to manually attach the debugger to the relevant browser and the aspnet_wp process. When I'm finished, I simply detach all.

like image 175
Raithlin Avatar answered Nov 11 '22 03:11

Raithlin


Extending upon Raithlin's suggestion, Ctrl+Alt+P is a useful shortcut to bring up the Attach to Process window.

like image 40
Kon Avatar answered Nov 11 '22 04:11

Kon