Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.NET Debug server without debugging IE

I have an ASP.NET application in visual studio 2010, and whenever I start debugging, it attaches the debugger to IE as well as the server, which just creates loads more bloat and makes everything run slowly.

How can I start debugging on the server only?

Andy

like image 306
Andy Avatar asked Jul 09 '26 21:07

Andy


1 Answers

Once the application is deployed to IIS, you can use Visual Studio on the server to attach to the web process. Also, see how to debug deployed web applications.

like image 80
Ryan Kohn Avatar answered Jul 11 '26 21:07

Ryan Kohn