I have multiple C++/C# Visual Studio Solutions some depend on each other, in the building Process I make the building order manually and build them one by one until the end.
now I will be going to continuous Integration "CI", My Question Is: is there any tool or method to automatically generate the correct building order?
My Project Structure Looks Like that:
All_Code:
VS Solution A:
- Project A.1
- Project A.2
VS Solution B:
- Project B.1
- Project B.2
Let's say Project B.1 Depends on A.1 and A.2 Depends on B.2 so, when I am building I order them as follows:
- A.1
- B.1
- B.2
- A.2