开发者

How do I get the lowest level project from a solution for build purposes?

If I have a visual studio solution with a multiple projects, from the projects how do I figure out which one will have all the dlls once the solution is built?

The reason is I need to copy those dll开发者_开发知识库's for my custom written build app. I know in the Visual studio GUI, if I right click on the solution and go to Project Build Order, the lowest level item will be the project which will have the complete list of built dll's and referenced dll's. So is there any logic I can use to work this out through code?


You could write some code to read the solution / project files (the formats are not hard) and work out the dependency tree yourself.

However, a better approach is to change all the projects to output to a common \bin directory to start with by altering the build properties in Visual Studio. This avoids you having numerous copies of binaries in various individual project bin directories and makes life easier when it grows to a size where you need to split into multiple solutions.

A directory structure something like the following is often useful:

  \bin (Common output directory for all projects)
  \src (I usually keep the solution file in \src)
    \ProjectA
    \ProjectB
  \lib (Common libraries, e.g. nunit or log4net etc)
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜