MSBuild - can it work out project dependencies in a solution file? If so how? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T12:25:17Zhttp://stackoverflow.com/feeds/question/287399http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/287399/msbuild-can-it-work-out-project-dependencies-in-a-solution-file-if-so-how3MSBuild - can it work out project dependencies in a solution file? If so how?Dave2008-11-13T16:23:56Z2008-12-30T14:48:58Z
<p>Hi,</p>
<p>I have an msbuild project which builds a SLN file from visual studio which holds all the projects in (about 70+ project), and a lot of the projects are dependent on each other meaning they need to be build in order - sometimes a developer forgets to set the build order manually in visual studio in the solution file causing the msbuild on a clean solution to fail as something gets built out of order/cant find a dll.</p>
<p>Is there a way for msbuild to take all projects and work out the dependencies and build the projects in order, if there is how do i do this? using an MSBuild task? With current tries it seems to just build in the order it reads the projects in - if i pass in a list of project files+paths.</p>
<p>Currently the only way i can think to solve this is a external app which scans the proj files and references and then manually creates a solution each time.. but this seems overkill for such a simple thing.</p>
<p>Anyone solved / seen this before? </p>
<p>Cheers</p>
http://stackoverflow.com/questions/287399/msbuild-can-it-work-out-project-dependencies-in-a-solution-file-if-so-how/287425#2874250Answer by Bruno Shine for MSBuild - can it work out project dependencies in a solution file? If so how?Bruno Shine2008-11-13T16:33:06Z2008-11-13T16:33:06Z<p>check out <a href="http://stackoverflow.com/questions/272199/why-am-i-missing-assemblies-from-the-bin-directory-when-compiling-with-msbuild">http://stackoverflow.com/questions/272199/why-am-i-missing-assemblies-from-the-bin-directory-when-compiling-with-msbuild</a></p>
http://stackoverflow.com/questions/287399/msbuild-can-it-work-out-project-dependencies-in-a-solution-file-if-so-how/299372#2993720Answer by Mr. Kraus for MSBuild - can it work out project dependencies in a solution file? If so how?Mr. Kraus2008-11-18T16:58:34Z2008-11-18T16:58:34Z<p>If all of your dependent projects are in the solution and you are using Project references, Visual Studio should manage the dependencies for your and build in order of that dependency list.</p>
<p>It sounds like you are not using project references. I always recommend project references.</p>
http://stackoverflow.com/questions/287399/msbuild-can-it-work-out-project-dependencies-in-a-solution-file-if-so-how/299409#2994091Answer by Scott Dorman for MSBuild - can it work out project dependencies in a solution file? If so how?Scott Dorman2008-11-18T17:08:41Z2008-11-18T17:08:41Z<p>How are you calling MSBuild? If you point MSBuild to the solution file, it should be able to work out the dependencies. If you point it to individual project files, then it won't be able to resolve any project references.</p>
<p>If you don't use project references you can still control the dependency order in a solution by using the "Project Dependencies" dialog to manually set the dependencies.</p>
http://stackoverflow.com/questions/287399/msbuild-can-it-work-out-project-dependencies-in-a-solution-file-if-so-how/400438#4004380Answer by for MSBuild - can it work out project dependencies in a solution file? If so how?2008-12-30T14:48:58Z2008-12-30T14:48:58Z<p>While it is correct that MSBuild should observe the build order when you use project dependencies there is one caveat. It doesn't at present observe the reverse build order when building the clean target (as I have blogged about <a href="http://brumlemann.blogspot.com/2008/12/why-it-is-error-for-msbuild-to-build.html" rel="nofollow">here</a>). For regular build however it works nicely as described by others here.</p>