Visual Studio & compile performance issues for large number of files - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T12:03:59Zhttp://stackoverflow.com/feeds/question/1018699http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1018699/visual-studio-compile-performance-issues-for-large-number-of-files2Visual Studio & compile performance issues for large number of fileseschneider2009-06-19T15:47:59Z2009-06-19T16:53:13Z
<p>Our current solutions/projects have several classes combined into one file, I'm told this was done due to the slow compile times in VS. </p>
<p>Is this a confirmed problem and solution?</p>
<p>Can we break these apart now that we are using VS2008 Team system? Has anyone else separated the classes into different files and still had good performance?</p>
http://stackoverflow.com/questions/1018699/visual-studio-compile-performance-issues-for-large-number-of-files/1018736#10187360Answer by OregonGhost for Visual Studio & compile performance issues for large number of filesOregonGhost2009-06-19T15:56:30Z2009-06-19T15:56:30Z<p>I'm using C# rather than VB.NET, but I never encountered compiler performance problems. It seems that this is some kind of premature optimization. I don't care how long my build server needs to build the application. Don't sacrifice clarity for build time performance.</p>
http://stackoverflow.com/questions/1018699/visual-studio-compile-performance-issues-for-large-number-of-files/1018796#10187960Answer by Fredrik Mörk for Visual Studio & compile performance issues for large number of filesFredrik Mörk2009-06-19T16:11:11Z2009-06-19T16:11:11Z<p>Sounds like you might want to try to persuade your team to look into the solution design; it might not be optimal to have one giant solution with all projects in there. If build times are indeed a problem, I would rather solve it by breaking the solution down to logical parts, if possible.</p>
http://stackoverflow.com/questions/1018699/visual-studio-compile-performance-issues-for-large-number-of-files/1018841#10188410Answer by Gabe Moothart for Visual Studio & compile performance issues for large number of filesGabe Moothart2009-06-19T16:20:09Z2009-06-19T16:28:01Z<p>I do not believe that grouping many classes into a single file will significantly improve build performance for normal projects. It should be safe to break them out into more files (one-per-class is standard).</p>
<p>The one exception I've run into is "Web Site" projects. I don't have any scientific data, but these <em>do</em> seem to get slower as the number of files increases. To fix that you can convert it to a "Web Application" project.</p>
<p>Having too many projects in a solution is also known to make VS slow, but that doesn't sound like your problem.</p>
http://stackoverflow.com/questions/1018699/visual-studio-compile-performance-issues-for-large-number-of-files/1018859#10188591Answer by Greg B for Visual Studio & compile performance issues for large number of filesGreg B2009-06-19T16:25:29Z2009-06-19T16:25:29Z<p>What is your hardware like?</p>
<p>The big bottleneck with VS is that it needs to read and write loads of little files.</p>
<p>A fast hard drive or two can improve performance loads!</p>
http://stackoverflow.com/questions/1018699/visual-studio-compile-performance-issues-for-large-number-of-files/1018876#10188760Answer by marr75 for Visual Studio & compile performance issues for large number of filesmarr752009-06-19T16:30:43Z2009-06-19T16:30:43Z<p>This is a confirmed problem and a confirmed solution. At Tech Ed this year they said that it will no longer be a problem in VS2010, which you could download a beta of and try out.</p>
http://stackoverflow.com/questions/1018699/visual-studio-compile-performance-issues-for-large-number-of-files/1018946#10189463Answer by JaredPar for Visual Studio & compile performance issues for large number of filesJaredPar2009-06-19T16:48:18Z2009-06-19T16:48:18Z<p>I work on the VB.Net IDE team and I can tell you that putting everything in 1 file will make VS run slower, not faster. VB.Net works just fine with classes in different files. </p>
<p>The only time this would ever make a difference is if you had an unbelievably slow hard drive, and files that were on very different parts of the physical disks (resulting in more and longer seek instructions). In general this shouldn't be a problem and for the VB.Net IDE this would only be a problem during initial startup. We have several layers of caching that would help eliminate even these types of problems. </p>
<p>You <strong>may</strong> be able to discover some minimal benefits to this approach if you only consider the raw time it takes the command line compiler to operate. IMHO, the more important numbers are the respnosiveness of Visual Studio and the relative build time for Visual Studio. VS responsiveness will decrease if have <strong>extremely</strong> long files (which is what will eventually occur if you put ever class into a single file). </p>