Anyone Experiencing Slow Builds With VS2010?

Posted by MrKWatkins on Stack Overflow See other posts from Stack Overflow or by MrKWatkins
Published on 2010-04-19T15:55:49Z Indexed on 2010/04/20 11:03 UTC
Read the original article Hit count: 170

Filed under:

Hi,

We've recently upgraded to the final release of VS2010 and are experiencing very slow build times compared to the same code under 2008. I was wondering if anyone else is experiencing the same so I can work out whether it's just our environment or not? A few details:

  • Using VS2010 Ultimate on Windows 7 with fairly beefy machines, talking to TFS 2010.
  • The solution has been upgraded from VS2008 but still builds against .NET 3.5 and ASP.NET MVC 1.0.
  • It doesn't seem to be the compilation itself taking long but something else in the build process. This is because even projects that are up to date and don't need compiling are taking a few seconds or so to process.
  • It's not due to an Visual Studio addin because a couple guys in the team haven't installed any.
  • The first build after loading VS2010 is pretty quick, then they seem to slow down over time. For example on of the projects in my solution just took 00:00:00.08 to process after a restart. (The project was up to date and didn't need compiling) I then immediately hit rebuild and it jumps to 00:00:01.33.
  • We're also experiencing the problem with another solution that uses .NET 4.0 that was building perfectly fine under VS2010 RC.
  • There are no build events or anything like that I can blame, just straightforward assembly builds.
  • The IDE is not very responsive during the slow builds.

Anyone else has similar problems?

Update: It looks like the resolving assembly references is taking a long time. Looking at the MSBuild diagnostic output or the example above the first build has 30ms for ResolveAssemblyReferences, the second build has 800ms. Subsequent builds seem to be taking longer copying stuff around, e.g. CopyFilesToOutputDirectory jumps from 1ms to 27ms.

© Stack Overflow or respective owner

Related posts about visual-studio-2010