Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why is the build failing in Visual Studio because it cannot resolve namespaces from referenced assemblies?

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,

  1. 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?
  2. 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)
like image 914
Learner Avatar asked Mar 31 '11 12:03

Learner


People also ask

What is reference path in Visual Studio project?

The Reference Path property tells Visual Studio where to look for referenced assemblies; the default is the path you used when you added the reference.


1 Answers

The problem is solved. Problem was that project C was targetting '.NET 4 Client profile' framework and A, B were targetting '.NET 4' framework. When i changed target framework of C, everything built successfully.

Answer posted to this question by 'Registered User' helped me.

like image 147
Learner Avatar answered Oct 11 '22 17:10

Learner