Reputation: 3978
I'm working in a project for a customer where one solutions has 3 projects. Project A is the base, then project B depends on A, and project C depends on B. By the way, project C is the application, A and B are class libraries.
Usually, I can make a change in project A without the need of manually recompile B and C because Visual Studio does it automatically for me.
However, in this environment (after downloading the solution via Ankh SVN), the dependencies are somewhat not recognized when executing. I'm forced to manually recompile the dominant projects of the dependency hierarchy.
Why is this happening? and how to solve it? Thanks!
Upvotes: 4
Views: 2995
Reputation: 11740
Make sure you added the references of project B and project C as a project and you didn't add the project output as an assembly reference.
Upvotes: 1