Friday, December 10, 2010

Make ASP.NET project compile/load time faster

Add following settings into compilation section in web.config file:

batch="false" optimizeCompilations="true" tempDirectory="g:\"
tempDirectory is for the RAM drive


 <compilation debug="true" batch="false" optimizeCompilations="true" tempDirectory="g:\">


Install RAM drive

Slash your ASP.NET compile/load time without any hard work