Slow debugging on Visual Studio
Recently, I was experiencing a very slow debugging with Visual Studio for an ASP.NET project.
There are few solutions for that on Internet:
- Review the locations from where the computer is loading symbols
- Review the debugging parameters
- Stop the add-ons
- …
It didn’t help me at all… Looking for a solution, finding one, implementing it and start this cycle over because no solutions would work.
The workaround I found was to start the project in debug and then “stop” the debug mode in visual studio and browse the ASP.NET site from the local server. But it’s not really helpful when you want to use breakpoints, watches and all the rest of the good debugger tools.
The solution I found is reinstalling Visual Studio. It worked like magic… I think I installed some tools (like SQL Server) that messed up with Visual Studio and reinstalling it was the solution.
If you have such a slowness problem…I wish you good luck and please, try to not become insane… it almost happened to me