Very slow debugging in ASP.NET 4 for Visual Studio 2010

when i debug my asp.net web app it is very slow on my machine when i debug.

- this is their way to do it quickly, as in MVC, we exclude the file if we do not want to.

+3
source share
2 answers

Your question is rather vague. What exactly is slow? Running the application, the time it takes to launch the application?

If it takes a long time to start the application, try going to the Debug menu and select Delete all breakpoints . Breakpoints do not work more slowly under normal conditions, but when you change the code, some breakpoints may become invalid. Having these arrounds can slow it down a lot. So clear all the breakpoints and set only the ones you need.

+4
source

try 127.0.0.1 instead of localhost or change C: \ Windows \ System32 \ drivers \ etc \ hosts

127.0.0.1       localhost
::1             localhost

For

127.0.0.1       localhost
#::1             localhost
+1
source

Source: https://habr.com/ru/post/1784689/


All Articles