Speed Up Your .Net Project Debugging
Tags: .net, speed up your debugging- Are you suffering from the poor performance of the Visual Studio project while debugging?
- Do you wait for as much as up to 5 or more seconds for a single statement to get executed while debugging?
The main cause of the the problem is the file with extension suo in the same folder where the project file is lying.
This file actually contains all the debug points put in within the solution. You must have also noticed that when you put break points in the project and save it and reopen it, all break points are retained. This credit goes to the suo file which contains all break points.
So while debugging the project on every statement it loads the suo file to check the breakpoints and you can imagine loading a file having size more than 1 mb again and again would definitely take a lot of time and that is the reason why debugging works slow.
The best and the fastest sloution is to delte that suo file. It does not impact the solution or project file or code as such but you will loose all break points. This file will be created again when loaded next time.
If you don’t want to loose breakpoints but still want to reduce the size then you should manually remove the breakpoints and save the project/solution.
This would definitely help in reducing the debug time.
Hope it helps!
-NKJ
Related posts:
- VS.Net Insallation Error There is a general issue that we face while installing...
- ‘Copy to Output Directory’ Property in VS2005 I am sure many of you must be new to...
- Speed Up Excel Printing You would have definitely noticed that printing multiple copies of...
- Life is a Do-It-Yourself Project I don’t know but I just love the inspirational stories...
- How To Use XSLT in .Net It is fairly easy to use XSL transform in .Net,...
- Don’ts in Software Projects If you belong to Software Industry and work on different...
- Select Active Item in Solution Explorer If you work on Microsoft dot net technologies and use...
- New Libraries in .Net 3.5 Here is the list of new assemblies added to the...
- How to Improve SQL Performance Consider the following SQL SELECT * FROM A-LF LEFT JOIN...
- Microsoft’s Calculator Failed Can you imagine Microsoft’s Calculator can also fail in some...

Leave your response!