Visual Studio 2008 Unnecessary Project Building - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T22:22:51Z http://stackoverflow.com/feeds/question/567939 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/567939/visual-studio-2008-unnecessary-project-building 6 Visual Studio 2008 Unnecessary Project Building Brad Leach 2009-02-20T01:10:01Z 2009-04-22T00:43:10Z <p>I have a C# project which includes one exe and 11 library files. The exe references all the libraries, and lib1 may reference lib2, lib3, lib4, etc.</p> <p>If I make a change to a class in lib1 and built the solution, I assumed that only lib1 and the exe would need to be changed. However, all dll's and the exe are being built if I want to run the solution.</p> <p>Is there a way that I can stop the dependencies from being built if they have not been changed?</p> http://stackoverflow.com/questions/567939/visual-studio-2008-unnecessary-project-building/567942#567942 2 Answer by CMS for Visual Studio 2008 Unnecessary Project Building CMS 2009-02-20T01:13:57Z 2009-02-20T01:13:57Z <p>You can uncheck the build option for specified projects in your <a href="http://msdn.microsoft.com/en-us/library/bb166577.aspx" rel="nofollow">Solution configuration</a>:</p> <p><img src="http://i.msdn.microsoft.com/Bb166577.vsSolutionCfg(en-us,VS.90).gif" alt="SolutionProperties" /></p> <p>You can can create your own solution configurations to build specific project configurations...</p> <p><img src="http://i.msdn.microsoft.com/Bb166577.vsConfigManager(en-us,VS.90).gif" alt="build config" /></p> http://stackoverflow.com/questions/567939/visual-studio-2008-unnecessary-project-building/567956#567956 4 Answer by Gulzar for Visual Studio 2008 Unnecessary Project Building Gulzar 2009-02-20T01:23:35Z 2009-02-20T01:23:35Z <p>I am not sure if there is a way to avoid dependencies from being built. You can find some info here like setting copylocal to false and putting the dlls in a common directory. </p> <p><a href="http://stackoverflow.com/questions/488043/optimizing-visual-studio-solution-build-where-to-put-dll-files">Optimizing Visual Studio solution build - where to put DLL files?</a></p> http://stackoverflow.com/questions/567939/visual-studio-2008-unnecessary-project-building/567964#567964 0 Answer by volatilsis for Visual Studio 2008 Unnecessary Project Building volatilsis 2009-02-20T01:29:18Z 2009-02-20T01:29:18Z <p>I don't think there's away for you to do it out of the box in VS. You need this add-in <a href="http://workspacewhiz.com/" rel="nofollow">http://workspacewhiz.com/</a></p> <p>It's not free but you can evaluate it before you buy. </p> http://stackoverflow.com/questions/567939/visual-studio-2008-unnecessary-project-building/568092#568092 0 Answer by Gregory A Beamer for Visual Studio 2008 Unnecessary Project Building Gregory A Beamer 2009-02-20T02:42:01Z 2009-02-20T02:42:01Z <p>Yes, exclude the non-changing bits from the solution. I say this with a caveat, as you can compile in a way where a change in build number for the changed lib can cause the non built pieces to break. This should not be the case, as long as you do not break interface, but it is quite common because most devs do not understand interface in the .NET world. It comes from not having to write IDL. :-)</p> <p>As for X projcts in a solution, NO, you can't stop them from building, as the system sees a dependency has changed.</p> <p>BTW, you should look at your project and figure out why your UI project (assume it is UI) references the same library as everything else. A good Dependency Model will show the class(es) that should be broken out as data objects or domain objects (I have made an assumption that the common dependency is some sort of data object or domain object, of course, but that is quite common). If the common dependency is not a domain/data object, then I would rethink my architecture in most cases. In general, you should be able to create a path from UI to data without common dependencies other than non-behavioral objects.</p> http://stackoverflow.com/questions/567939/visual-studio-2008-unnecessary-project-building/775237#775237 3 Answer by Cyberherbalist for Visual Studio 2008 Unnecessary Project Building Cyberherbalist 2009-04-22T00:22:33Z 2009-04-22T00:22:33Z <p>Now, after I say this, some propeller-head is going to come along and contradict me, but there is no way to do what you want to do from Visual Studio. There is a way of doing it outside of VS, but first, I have a question:</p> <p>Why on earth would you want to do this? Maybe you're trying to save CPU cycles, or save compile time, but if you do what you're suggesting you will suddenly find yourself in a marvelous position to shoot yourself in the foot. If you have a library 1 that depends upon library 2, and only library 2 changes, you may think you're OK to only build the changed library, but one of these days you are going to make a change to library 2 that will break library 1, and without a build of library 2 you will not catch it in the compilation. So in my humble opinion, DON'T DO IT. </p> <p>The reason this won't work in VS2005 and 2008 is because VS uses MSBuild. MSBuild runs against project files, and it will examine the project's references and build all referenced projects first, if their source has changed, before building the target project. You can test this yourself by running MSBuild from the command line against one project that has not changed but with a referenced project that has changed. Example:</p> <p>msbuild ClassLibrary4.csproj</p> <p>where ClassLibrary4 has not changed, but it references ClassLibrary5, which has changed. MSBuild will build lib 5 first, before it builds 4, even though you didn't mention 5.</p> <p>The only way to get around all these failsafes is to use the compiler directly instead of going through MSBuild. Ugly, ugly, but that's it. You will basically be reduced to re-implementing MSBuild in some form in order to do what you want to do. </p> <p>It isn't worth it.</p> http://stackoverflow.com/questions/567939/visual-studio-2008-unnecessary-project-building/775272#775272 10 Answer by Sebastian Good for Visual Studio 2008 Unnecessary Project Building Sebastian Good 2009-04-22T00:34:22Z 2009-04-22T00:34:22Z <p>Is the key this phrase? "However, all dll's and the exe are being built <em>if I want to run the solution</em>"</p> <p>Visual Studio will always try to build everything <em>when you run</em> a single project, even if that project doesn't depend on everything. This choice can be changed, however. Go to Tools|Options|Projects and Solutions|Build and Run and check the box "Only build startup projects and dependencies on Run". Then when you hit F5, VS will only build your startup project and the DLLs it depends on. </p> http://stackoverflow.com/questions/567939/visual-studio-2008-unnecessary-project-building/775289#775289 2 Answer by Rob Sanders for Visual Studio 2008 Unnecessary Project Building Rob Sanders 2009-04-22T00:42:16Z 2009-04-22T00:42:16Z <p>We actually had this problem on my current project, in our scenario even running unit tests (without any code changes) was causing a recompile. Check your build configuration's "Platform".</p> <p>If you are using "Any CPU" then for some reason it rebuilds all projects regardless of changes. Try using processor specific builds, i.e. x86 or x64 (use the platform which is specific to the machine architecture of your machine). Worked for us for x86 builds.</p> <p><img src="http://labs.episerver.com/Global/xmlrpc/111856/2008/06/24/image%5F26.png" alt="alt text" /></p> http://stackoverflow.com/questions/567939/visual-studio-2008-unnecessary-project-building/775293#775293 2 Answer by Arnshea for Visual Studio 2008 Unnecessary Project Building Arnshea 2009-04-22T00:43:10Z 2009-04-22T00:43:10Z <p>We had a similar problem at work. In post-build events we were manually embedding manifests into the outputs in the bin directory. Visual Studio was copying project references from the obj dir (which weren't modified). The timestamp difference triggered unnecessary rebuilds.</p> <p>If your post-build events modify project outputs then either modify the outputs in the bin and obj dir OR copy the modified outputs in the bin dir on top of those in the obj dir.</p>