views:

256

answers:

2

I have a question about dependencies in CCNET. I have several projects, each of them are dependant on another project (a control library as it is referred to internally). When the control library project is changed, and triggers a recompile, how do I get the other dependent projects to be rebuilt?

+1  A: 

By using project triggers.

Igor Brejc
Great, I don't know how long I looked at the documentation, but still didn't find that section.
Mmarquee
A: 

We also have many interdependent projects too, which we solve by telling MSBuild to build a solution file which contains all the projects requires, and in the appropriate build order.

Pondidum