VS 2010 Ultimate Edition - hot to use msbuild to refresh exports of partial projects?
I use Visual Studio 2010 Ultimate Edition.
Situation is like this: I have two databases solutions A and B. Solution A is exported as partial project. Solution B imports partial project from solution A.
I would like to build automatically solution B with the newest version of partial project from solution A. I need to do it automatically using build server. Partial project from solution A should be refreshed before each database build. Do I have to refresh also a partial project import fro开发者_C百科m solution B after refreshing export in solution A?
Is it possible to make it through some command line? What command should I call and which parameters should I use?
Please help.
Is it built automatically in the IDE? If yes, you can use devenv /build <solution file>
for that.
精彩评论