Okay, so I have to admit that I'm very new to all of these build automation tools. But basically what I am interested in is a way to relate my assembly definitions in such a way that if I have such a case
- ProjectA creates ComponentA.dll
- ProjectB refers to ComponentA.dll and produces ComponentB.dll
- Links ProjectC ComponentB.dll
then when I make changes to ProjectA and check them out, the build process will automatically create ProjectB and finally ProjectC, and report any errors.
So, is there a way to do this, or if this type of thing will be handled somehow completely differently in the first place?
source share