Reputation: 11462
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
Upvotes: 3
Views: 347
Reputation: 3031
One way is to browse with option by clicking the browse with option and the other way is to set the default browser as any other browser than IE
Upvotes: 1
Reputation: 25137
There is no way to start debugging of an ASP.NET site in Visual Studio without it launching a browser. So set the default browser to a different browser that you want to use so you don't waste spawning an IE instance. From Setting a Default Browser for Visual Studio:
Upvotes: 2
Reputation: 13509
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.
Upvotes: 2