how to speed up and optimize compiler build of asp.net site when debugging

Visual Studio 2008/2010/ASP.NET:

How to speed up the delay after rebuilding the solution?

I like to detach my debugger while testing my changes or debugging issues that can be pinpointed by a simple strack trace.

After I fix a bug, I build the solution and then refresh the page.

There’s that initial lag time that occurs after the rebuild before the web page displays.

After that, it’s as fast as it should be. I heard that the application is loading up all the new DLLs during this time.

Is there any way to reduce the amount of this lag?

Answers:

Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.

Method 1

You can set the optimizeCompilations to true, and batch to false

<compilation batch="false" optimizeCompilations="true" ... >

batch=false says to asp.net to build if necessary only the page that you call. We set batch to true, only on release live site to so the asp.net compiles many pages at ones, and you may have a big delay but only ones…

The optimizeCompilations=true says that each page is not check for libraries updates each time its runs. This have a minor issue – if you change a global static function for example that is called from 4 pages, this 4 pages did not know that this function change, so you need to just open them and saved them, to force compiler to re-compile them. Or else they throw error because they did not check if something change – you must know that and updates them to force the re-compile.

reference : CompilationSection Class


All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x