We have a Visual Studio 2010 solution that has over 120 projects that reference each other in some way. All inter-project references are project references and not file references which helps Visual Studio determine the project build order automagically.
Out of 120, we have a few core projects that are not interdependant on each other and these projects are referenced by the rest extensively. Hence these projects are at the top of the project build order. These core projects have references from the .NET framework, Enterprise Library (and some of them have third party dll file references like a zip utility).
I cannot figure out why these core projects are ordered in a specific way.
What is the algorithm for the project build order for non-interdependant projects?
PS: I do understand I can influence this order by creating a fake dependancy using the Dependencies tab of Project Dependencies.
解决方案
I believe that Visual Studio builds these projects in the order they appears in solution. If you need to adjust the build order of projects you can use Project Dependencies (do not confuse with .NET References). When you add .NET reference from one .NET project to another inside you Visual Studio solution the Visual Studio automatically creates project dependency. To modify project dependencies manually do the following:
Right-click on the solution in Solution Explorer.
Select Project Dependencies
From the drop-down list select project you want to add dependencies to.
Select dependencies for this project.
Also you can view the resulting build order by switching to the tab Build Order.
博客围绕Visual Studio 2010解决方案中120多个相互引用的项目编译顺序展开。提到有几个核心项目相互无依赖却被广泛引用,不清楚其特定排序原因。还给出解决方案,可通过项目依赖项手动调整编译顺序,也能在构建顺序选项卡查看结果。
7566

被折叠的 条评论
为什么被折叠?



