I have 3 class library projects. Lets call them A, B & C. I have added project reference
of A & B into the project C.
A & B are building without any error or warning.
Code(Class file) from the project C uses public classes from A & B. When I add project reference in C and look at the class file (before building project C) in the C project, I can clearly see that all the classes and namespaces from A & B are resolved. When I hover my mouse on the class name (class from either A or B), it shows the correct namespace of it too.
I have set Copy Local
property to True
on both the project references.
However,
- When I run the Rebuild All (or Build on project C), build fails because it fails to resolve the namespaces! What can I check further to ensure everything is done correctly?
- I never find the assemblies of A & B copied into the
bin\debug
folder of the project C. Why does not it copy the reference? (I have seen several questions about this problem but none of the solutions provided to them have worked for me)