in Visual Studio I have a solution with several projects. In one project, I added a link to another project. Everything is fine. I see namespaces / classes of another project in autocomplete, etc.
When i try to do
OtherProjectNamespace.Class a = new OtherProjectNamespace.Class();
I get this:
Could not load file or assembly '**OtherProjectNamespace**, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.
There is no line, nothing, I tried to try ... catch a new line and not even catch an exception.
What could be the reason?
Thanks Carlos
source
share