Reference DLLs not loading in Visual Studio 2010
        Posted  
        
            by Adam Haile
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Adam Haile
        
        
        
        Published on 2010-06-08T13:06:45Z
        Indexed on 
            2010/06/08
            14:32 UTC
        
        
        Read the original article
        Hit count: 623
        
I'm working on a C# 4.0 project in VS2010 and needed to use some older DLLs containing controls that were created in C# 3.5 on VS2008. When I first add the DLLs to the references, I was able to see the namespace via intellisense and create an instance of one of the controls, but when I go to build, it gives me the following error:
The type or namespace name 'BCA' could not be found (are you missing a using directive or an assembly reference?)
And I do have a using directive for that namespace already, which is now underlined in red, showing that VS cannot find it. And now, intellisense won't pick up that namespace at all.
I even tried added the controls to the toolbox (which worked) but then when I drag them to the GUI, it says that it cannot locate the DLL reference, even though it obviously knows where it is.
I even tried changing the target framework to 3.5, but still with the same results.
Any thoughts as to why this could be happening?
© Stack Overflow or respective owner