Visual Studio 2008 ASP.NET Builds VERY Slowhttp://forums.asp.net/t/1254545.aspx/1?Visual+Studio+2008+ASP+NET+Builds+VERY+SlowFri, 08 Oct 2010 13:38:47 -040012545452328123http://forums.asp.net/p/1254545/2328123.aspx/1?Visual+Studio+2008+ASP+NET+Builds+VERY+SlowVisual Studio 2008 ASP.NET Builds VERY Slow <p>Whenever I debug an ASP.NET page in VS2008 (no matter how simple the page is), it hangs for at least 90 seconds.&nbsp; The &quot;build started &gt; build succeeded&quot;&nbsp;bit only takes three or four seconds...then it hangs for what seems like an eternity.&nbsp; Periodically, &quot;Loading symbols xxxxxxxxxxx&quot; will flash at the bottom, and finally after about 90 seconds, it'll hit the Page_Load event.</p> <p>&nbsp;Any idea as to what's going on?</p> <p>&nbsp;</p> <p>Thanks in advance.</p> 2008-04-29T17:07:47-04:002328526http://forums.asp.net/p/1254545/2328526.aspx/1?Re+Visual+Studio+2008+ASP+NET+Builds+VERY+SlowRe: Visual Studio 2008 ASP.NET Builds VERY Slow <p>Have you tried to apply the fix mentioned on: <a href="http://weblogs.asp.net/scottgu/archive/2008/02/08/vs-2008-web-development-hot-fix-roll-up-available.aspx"> http://weblogs.asp.net/scottgu/archive/2008/02/08/vs-2008-web-development-hot-fix-roll-up-available.aspx</a></p> 2008-04-29T20:35:43-04:002328567http://forums.asp.net/p/1254545/2328567.aspx/1?Re+Visual+Studio+2008+ASP+NET+Builds+VERY+SlowRe: Visual Studio 2008 ASP.NET Builds VERY Slow <p>Thanks for the quick response.&nbsp; You're responding faster than VS is debugging [;)]</p> <p>&nbsp;I did try the hotfix - it fixed some other problems I was having (slow performance in the designer and code windows, etc.), but it didn't stop the debug issues.&nbsp; I just timed it twice - it's over two minutes between the time that VS says &quot;build succeeded&quot; and the Page_Load event.&nbsp; The&nbsp;build and the Page_Load events only take about 4 seconds each respectively.</p> <p>&nbsp;Any other ideas?</p> 2008-04-29T20:54:19-04:002329439http://forums.asp.net/p/1254545/2329439.aspx/1?Re+Visual+Studio+2008+ASP+NET+Builds+VERY+SlowRe: Visual Studio 2008 ASP.NET Builds VERY Slow2008-04-30T09:10:45-04:002331803http://forums.asp.net/p/1254545/2331803.aspx/1?Re+Visual+Studio+2008+ASP+NET+Builds+VERY+SlowRe: Visual Studio 2008 ASP.NET Builds VERY Slow <p>Hi Jeff,</p> <p>Thanks for the response.&nbsp; The dialog under Tools &gt; Options &gt; Debugging &gt; Symbols is empty.&nbsp; Any other ideas?</p> <p>Would you like me to send any details to the address you mentioned above?&nbsp; I'm happy to do anything to contribute to a resolution.</p> <p>Thanks again.</p> 2008-05-01T12:14:10-04:002546711http://forums.asp.net/p/1254545/2546711.aspx/1?Re+Visual+Studio+2008+ASP+NET+Builds+VERY+SlowRe: Visual Studio 2008 ASP.NET Builds VERY Slow <p>We have this problem as well.&nbsp; Using asp.net 2.0 with vb.net on VS 2008, win xp.&nbsp; Our project is taking a minute to start the debugger and get going.&nbsp; It's worse on another one of our projects.&nbsp; After the browser loads, it just sits there waiting for it to finish loading the symbols as seen in the Output window.&nbsp; The project compiles within about 10 seconds but takes a minute to start up after that.&nbsp; Productivity has gone south.</p> <p>I have tried most things I can find on other blogs for solutions but no luck.&nbsp; The Tools-Options-Debugger-Symbols settings is empty so it doesn't point to a bad path.&nbsp; Should be okay there.&nbsp; There isn't an environment variable _NT_SYMBOL_PATH so okay there.</p> <p>Turned on Debugger Exceptions but nothing seems to be slowing it down on startup.</p> <p>&nbsp;It appears that it just takes forever to load symbols.&nbsp; Tried to use the Microsoft symbol server to create a local symbol cache but it prompted me for the location of a couple of things and the blog wasn't much help there.</p> <p>If I don't make any code changes, it starts up pretty fast.&nbsp; A one line code change causes it revert back to molasses.&nbsp; If I create a brank new web site project, it starts up the debugger pretty fast.</p> <p>Has anybody come up with a solution to this?</p> <p>&nbsp;I see that VS 2008 SP1 might be available next week (8/11/08)&nbsp;per the MSDN subscriptions home page. Hopefully that will help.&nbsp; </p> 2008-08-08T21:03:50-04:002554751http://forums.asp.net/p/1254545/2554751.aspx/1?Re+Visual+Studio+2008+ASP+NET+Builds+VERY+SlowRe: Visual Studio 2008 ASP.NET Builds VERY Slow <p>I had the same problem and made all of the adjustments as mentioned in this forum but it didn't help. I began to suspect that the slow loading time of the dlls had to do with security settings. It appears that access to the dlls goes through security checking that is part of the operating system and not part of VIsual Studio. The dlls are located in a directory for your application under:</p> <p>C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\</p> <p>In order to speed up the security checking, you need to remove all of the security settings on the&nbsp;root folder of your application in the above mentioned directory, or on the directory &quot;Temporary ASP.NET Files&quot; if you want to have it apply to all web applications you develop.</p> <p>You right mouse click the folder and select Properties -&gt; Security</p> <p>Remove all users and groups. Some will not be allowed to be removed because they inherit their permissions from their parent folder. You must first remove the inheritance by clicking on the Advanced button and then uncheck the &quot;Inherit from parent...&quot; checkbox. Then remove the user or group. There must not be any users or groups where the checkboxes for their permissions are greyed out. If they are greyed out, it means that you didn't remove the inheritance from their parent.</p> <p>After you have removed all users and groups from the folder, you then need to add the following users and groups:</p> <p>Administrators<br> Users<br> ASPNET<br> Network<br> Network Service<br> Local Service</p> <p>Give each of these accounts <u><strong>full permission</strong></u>. Click on the Advanced button again and check off the &quot;Replace permission entries on all child objects...&quot;</p> 2008-08-13T09:37:02-04:002556093http://forums.asp.net/p/1254545/2556093.aspx/1?Re+Visual+Studio+2008+ASP+NET+Builds+VERY+SlowRe: Visual Studio 2008 ASP.NET Builds VERY Slow <p>Thank you so much for your reply.&nbsp; I have applied your changes but no luck.&nbsp; We are still at a 30 second start up time minimum.&nbsp; it builds in about 2 seconds and then takes 25 seconds to load all the symbols and get going.&nbsp; The slowest symbols to load are from this folder:</p> <font size="1"> <p>C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root</p> <p>We have installed .Net 35 SP1 and VS 2008 SP1.</p> <p>We turned off our anti-virus to make sure it wasn't slowing things down.&nbsp; No help.</p> <p>Our project is not that big but we are using user controls.&nbsp; Watching the output window, it loads files from the GAC fast but is slow on the above Temporary ASP.Net\root folder.</p> <font size="1"> <p>Anyway, if anybody else has any ideas, please let me know.&nbsp; I'm assuming we should be able to start up faster than 30 seconds the build only takes 2-3 seconds.</p> <p>Thanks.</p> </font></font> 2008-08-13T18:02:39-04:002571353http://forums.asp.net/p/1254545/2571353.aspx/1?Re+Visual+Studio+2008+ASP+NET+Builds+VERY+SlowRe: Visual Studio 2008 ASP.NET Builds VERY Slow The problem eventually came back. I did find another solution that appears to have removed the problem. The environment variable NT_SYMBOL_PATH needs to be removed. Even if you've downloaded and cached the symbols from Microsoft's website, this environment variable should be completely removed altogether. I believe that the name of the environment variable might even have an underscore preceeding it, so just check for anything like _NT_SYMBOL_PATH and delete it. After I deleted this and rebooted VS, the problem disappeared with the slow loading of assemblies. 2008-08-21T10:39:39-04:002572416http://forums.asp.net/p/1254545/2572416.aspx/1?Re+Visual+Studio+2008+ASP+NET+Builds+VERY+SlowRe: Visual Studio 2008 ASP.NET Builds VERY Slow <p>THanks.&nbsp; I don't have that variable so good to go there.&nbsp; We have a case opened with Microsoft.&nbsp; Will post the results soon.</p> 2008-08-21T16:40:41-04:002572940http://forums.asp.net/p/1254545/2572940.aspx/1?Re+Visual+Studio+2008+ASP+NET+Builds+VERY+SlowRe: Visual Studio 2008 ASP.NET Builds VERY Slow <p></p> <blockquote><span class="icon-blockquote"></span> <h4>Elijah R</h4> The environment variable NT_SYMBOL_PATH needs to be removed</blockquote> &nbsp; <p></p> <p>Not in my experience.</p> <p>However a slow link, and a third party dll without local symbols will cause delays. But the best route is to switch off the automatic downloading of symbols inside VS (the environment variable is also used by other tools which will suffer for its loss). Tools | Options | Debugging | Symbols.and checking the &quot;search the above locations only when ...&quot; option.&nbsp;</p> <p>&nbsp;</p> 2008-08-21T20:34:45-04:002576370http://forums.asp.net/p/1254545/2576370.aspx/1?Re+Visual+Studio+2008+ASP+NET+Builds+VERY+SlowRe: Visual Studio 2008 ASP.NET Builds VERY Slow <p>&nbsp;Have many Gb of RAM do you run with?</p> <p>My laptop runs VS2008 fast with 2Gb of RAM and my desktop runs VS2008 very fast with 3.8 Gb of RAM.</p> <p>I suggest you you check your Virtual memory settings. Do you have a fixed size extent for the page file (minimum value = maximum value)?<br> </p> 2008-08-23T18:23:45-04:002603774http://forums.asp.net/p/1254545/2603774.aspx/1?Re+Visual+Studio+2008+ASP+NET+Builds+VERY+SlowRe: Visual Studio 2008 ASP.NET Builds VERY Slow <p>Thanks for the replies.&nbsp; I have 2gb of Ram with Dual core processor.</p> <p>I have been working with MS on this case.&nbsp; One suggestion they had that&nbsp;got me down to 25 seconds was:</p> <p>&nbsp;In web.config, set the <font color="#ff0000">batch </font>attribute in the compilation tag to false.&nbsp; Example below.<font color="#ff0000">&nbsp;&nbsp;</font></p> <p>&nbsp;<font color="#0000ff" size="2"><font color="#0000ff" size="2">&lt;</font></font><font color="#a31515" size="2"><font color="#a31515" size="2">compilation</font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2"> </font></font><font color="#ff0000" size="2"><font color="#ff0000" size="2">debug</font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">=</font></font><font size="2">&quot;</font><font color="#0000ff" size="2"><font color="#0000ff" size="2">true</font></font><font size="2">&quot;</font><font color="#0000ff" size="2"><font color="#0000ff" size="2"> </font></font><font color="#ff0000" size="2"><font color="#ff0000" size="2">strict</font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">=</font></font><font size="2">&quot;</font><font color="#0000ff" size="2"><font color="#0000ff" size="2">false</font></font><font size="2">&quot;</font><font color="#0000ff" size="2"><font color="#0000ff" size="2"> </font></font><font color="#ff0000" size="2"><font color="#ff0000" size="2">explicit</font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">=</font></font><font size="2">&quot;</font><font color="#0000ff" size="2"><font color="#0000ff" size="2">true</font></font><font size="2">&quot;</font><font color="#0000ff" size="2"><font color="#0000ff" size="2"> </font></font><font color="#ff0000" size="2"><font color="#ff0000" size="2">batch</font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">=</font></font><font size="2">&quot;</font><font color="#0000ff" size="2"><font color="#0000ff" size="2">false</font></font><font size="2">&quot;</font><font color="#0000ff" size="2"><font color="#0000ff" size="2">&gt;</font></font></p> <p><font color="#0000ff" size="2"><font color="#0000ff" size="2">&nbsp;I'll let you know if they come up with anything else.</font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2"></p> </font></font> 2008-09-05T20:00:09-04:002603966http://forums.asp.net/p/1254545/2603966.aspx/1?Re+Visual+Studio+2008+ASP+NET+Builds+VERY+SlowRe: Visual Studio 2008 ASP.NET Builds VERY Slow <p>VS2008 SP1 did it for me - not sure if you've tried that or not.&nbsp; Brought the builds down to 5 seconds or so.</p> 2008-09-05T22:18:36-04:002628411http://forums.asp.net/p/1254545/2628411.aspx/1?Re+Visual+Studio+2008+ASP+NET+Builds+VERY+SlowRe: Visual Studio 2008 ASP.NET Builds VERY Slow <p>After working with MS Support, three things helped.</p> <p>1) set batch=&quot;false&quot; in the compilation tag of the web.config file.&nbsp; Set it back to true when releasing to production.&nbsp; This knocked off a few seconds.</p> <font color="#0000ff" size="2"><font color="#0000ff" size="2"> <p>&lt;</font></font><font color="#a31515" size="2"><font color="#a31515" size="2">system.web</font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">&gt;</font></font></p> <p><font color="#0000ff" size="2"><font color="#0000ff" size="2">&lt;</font></font><font color="#a31515" size="2"><font color="#a31515" size="2">compilation</font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2"> </font></font><font color="#ff0000" size="2"><font color="#ff0000" size="2">debug</font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">=</font></font><font size="2">&quot;</font><font color="#0000ff" size="2"><font color="#0000ff" size="2">true</font></font><font size="2">&quot;</font><font color="#0000ff" size="2"><font color="#0000ff" size="2"> </font></font><font color="#ff0000" size="2"><font color="#ff0000" size="2">strict</font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">=</font></font><font size="2">&quot;</font><font color="#0000ff" size="2"><font color="#0000ff" size="2">false</font></font><font size="2">&quot;</font><font color="#0000ff" size="2"><font color="#0000ff" size="2"> </font></font><font color="#ff0000" size="2"><font color="#ff0000" size="2">explicit</font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">=</font></font><font size="2">&quot;</font><font color="#0000ff" size="2"><font color="#0000ff" size="2">true</font></font><font size="2">&quot;</font><font color="#0000ff" size="2"><font color="#0000ff" size="2"> </font></font><font color="#ff0000" size="2"><font color="#ff0000" size="2">batch</font></font><font color="#0000ff" size="2"><font color="#0000ff" size="2">=</font></font><font size="2">&quot;</font><font color="#0000ff" size="2"><font color="#0000ff" size="2">false</font></font><font size="2">&quot;</font><font color="#0000ff" size="2"><font color="#0000ff" size="2">&gt;</font></font></p> <p><font color="#0000ff" size="2"><font color="#0000ff" size="2">2) We had some projects that were vb classes and our data access layer DLLs underneath the web application project.&nbsp; We moved those outside of the web app project.&nbsp; Then updated went to the web application project properties page, and on the References page, pointed to these projects using Project tab in the Add References dialog.</font></font></p> <p><font color="#0000ff" size="2"><font color="#0000ff" size="2">3) Optionally, changing it to use IIS instead of the cassini application server sped it up a couple more seconds.&nbsp; However, you can't do edit and continue with this.&nbsp; You change this setting on the Web page of the web application properties page.</font></font></p> <p><font color="#0000ff" size="2"><font color="#0000ff" size="2">After doing all of that, we can make a code change and start up in 12 to 15 seconds.&nbsp; That's the best we could get it.</p> </font></font> 2008-09-17T22:36:27-04:002731993http://forums.asp.net/p/1254545/2731993.aspx/1?Re+Visual+Studio+2008+ASP+NET+Builds+VERY+SlowRe: Visual Studio 2008 ASP.NET Builds VERY Slow <p>Tatworth, </p> <p>This absolutely nothing to do with PC performance. Thanks for your input but please do not damage this thread. It's been a huge headache for us to have this message go through and get Microsoft to help or fix this problem. It's one of the worst problems ASP.NET/Visual Studio developers face every single day. This problem really harms our productivity. <br> </p> <p>Thanks <br> </p> 2008-11-07T17:23:54-05:002732039http://forums.asp.net/p/1254545/2732039.aspx/1?Re+Visual+Studio+2008+ASP+NET+Builds+VERY+SlowRe: Visual Studio 2008 ASP.NET Builds VERY Slow <p>&nbsp;In my case, the fix above (on the web.config compilation element) did not help. I have a page that has a big number of user controls. This is what takes a couple of minutes each time I do a code change and try to debug:</p> <p>&nbsp;'WebDev.WebServer.EXE' (Managed): Loaded 'M_1789df76_4b1f_4822_93d1_b228b0e8d9ec'<br> 'WebDev.WebServer.EXE' (Managed): Loaded 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\10256aec\9d1e1872\App_Web_msgboxuc.ascx.6bb32623.rnw21_je.dll', Symbols loaded.<br> 'WebDev.WebServer.EXE' (Managed): Loaded 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\10256aec\9d1e1872\App_Web_searchorganizationuc.ascx.6bb32623.yhgnwqi1.dll', Symbols loaded.<br> 'WebDev.WebServer.EXE' (Managed): Loaded 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\10256aec\9d1e1872\App_Web_navigation.master.cdcab7d2.hwtipfs7.dll', Symbols loaded.<br> 'WebDev.WebServer.EXE' (Managed): Loaded 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\10256aec\9d1e1872\App_Web_searchcontract.ascx.5a4dd027.8uadhjlb.dll', Symbols loaded.<br> 'WebDev.WebServer.EXE' (Managed): Loaded 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\10256aec\9d1e1872\App_Web_contractciproduct.ascx.5a4dd027.zknbdmut.dll', Symbols loaded.<br> 'WebDev.WebServer.EXE' (Managed): Loaded 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\10256aec\9d1e1872\App_Web_contracteventlist.ascx.5a4dd027.flmqjphk.dll', Symbols loaded.<br> 'WebDev.WebServer.EXE' (Managed): Loaded 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\10256aec\9d1e1872\App_Web_contractlocale.ascx.5a4dd027._quubfok.dll', Symbols loaded.<br> 'WebDev.WebServer.EXE' (Managed): Loaded 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\10256aec\9d1e1872\App_Web_contractretailer.ascx.5a4dd027.w5rpftx_.dll', Symbols loaded.<br> 'WebDev.WebServer.EXE' (Managed): Loaded 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\10256aec\9d1e1872\App_Web_contractsalestab.ascx.5a4dd027._fes67ej.dll', Symbols loaded.<br> 'WebDev.WebServer.EXE' (Managed): Loaded 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\10256aec\9d1e1872\App_Web_contractevent.ascx.5a4dd027.pmnl1bnd.dll', Symbols loaded.<br> 'WebDev.WebServer.EXE' (Managed): Loaded 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\10256aec\9d1e1872\App_Web_contact.ascx.5a4dd027.dfkxd2hu.dll', Symbols loaded.<br> 'WebDev.WebServer.EXE' (Managed): Loaded 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\10256aec\9d1e1872\App_Web_contractmfrtab.ascx.5a4dd027.oi883vsj.dll', Symbols loaded.<br> 'WebDev.WebServer.EXE' (Managed): Loaded 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\10256aec\9d1e1872\App_Web_contractlegaltab.ascx.5a4dd027.52-krbgr.dll', Symbols loaded.<br> 'WebDev.WebServer.EXE' (Managed): Loaded 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\10256aec\9d1e1872\App_Web_contractfintab.ascx.5a4dd027.rcy894rl.dll', Symbols loaded.<br> 'WebDev.WebServer.EXE' (Managed): Loaded 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\10256aec\9d1e1872\App_Web_searchcategory.ascx.bb99d8ca.yhw9kqoe.dll', Symbols loaded.<br> 'WebDev.WebServer.EXE' (Managed): Loaded 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\10256aec\9d1e1872\App_Web_contractopstab.ascx.5a4dd027.xw-cyuqg.dll', Symbols loaded.<br> 'WebDev.WebServer.EXE' (Managed): Loaded 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\10256aec\9d1e1872\App_Web_contractmfr.ascx.5a4dd027.lnurchjh.dll', Symbols loaded.<br> 'WebDev.WebServer.EXE' (Managed): Loaded 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\10256aec\9d1e1872\App_Web_contract.ascx.5a4dd027.pvvuohqw.dll', Symbols loaded.<br> 'WebDev.WebServer.EXE' (Managed): Loaded 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\10256aec\9d1e1872\App_Web_contract.aspx.adf53a76.26kaybg9.dll', Symbols loaded.<br> 'WebDev.WebServer.EXE' (Managed): Loaded 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\10256aec\9d1e1872\App_Theme_ThemeDefault.xfrphm-4.dll', Symbols loaded. </p> <p>Because I changed web.config to not batch compilation I can now see the details of all the user controls as they are each compiled or linked. I don't know why this takes so long (2 to 3 minutes to debug each time!). I am not changing the code in any of these user controls. But if I change code anywhere in the application or in any of the class libraries the long delay will happen the next time I debug. It's a nightmare.&nbsp;</p> <p>David <br> </p> 2008-11-07T17:47:25-05:002732088http://forums.asp.net/p/1254545/2732088.aspx/1?Re+Visual+Studio+2008+ASP+NET+Builds+VERY+SlowRe: Visual Studio 2008 ASP.NET Builds VERY Slow <p>&nbsp;&gt;Thanks for your input but please do not damage this thread</p> <p>How can it damage the thread?</p> <p>I have Visual Studio 2008 on two machines with 4Gb of RAM, and VS opens very fast.<br> </p> 2008-11-07T18:15:48-05:002732089http://forums.asp.net/p/1254545/2732089.aspx/1?Re+Visual+Studio+2008+ASP+NET+Builds+VERY+SlowRe: Visual Studio 2008 ASP.NET Builds VERY Slow <p>&nbsp;David</p> <p>&nbsp; &nbsp; Do you ever clear out your C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files directory?&nbsp; </p> 2008-11-07T18:17:19-05:002732443http://forums.asp.net/p/1254545/2732443.aspx/1?Re+Visual+Studio+2008+ASP+NET+Builds+VERY+SlowRe: Visual Studio 2008 ASP.NET Builds VERY Slow <p>&nbsp;why would that be necesarry?<br> </p> 2008-11-07T21:20:38-05:00