MSBuild - can it work out project dependencies in a solution file? If so how?

前端 未结 7 865
北海茫月
北海茫月 2021-02-01 05:24

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 m

7条回答
  •  借酒劲吻你
    2021-02-01 06:11

    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 here). For regular build however it works nicely as described by others here.

提交回复
热议问题