I'm getting a "type or namespace name could not be found" error for a C# WPF app in VS2010. This area of code was compiling fine, but suddenly I'm getting this error. I've tried removing the Project Reference and Using statement, shutting VS2010 and restarting, but still I have this issue.

Any ideas why this might be occurring, where it seems like I'm doing the write thing re Reference & Using statement?

I also noted in VS2010 that intellisense for that namespace is working ok, so it seems like VS2010 has the project reference and seeing the namespace on one hand, but during compile doesn't see it?

link|improve this question

feedback

6 Answers

up vote 44 down vote accepted

I have seen this behaviour when an application is set to target the .Net 4 Client Profile framework, and the project it references targets the full .Net 4 framework.

So to make that clearer:

  • Project A targets the Client Profile framework
  • Project A references Project B
  • Project B targets the full framework

The solution in this case is to either upgrade the framework target of the application (Project A), or downgrade the target of referenced assembly (Project B). It is okay for a full framework app to reference/consume a client profile framework assembly, but not the other way round (client profile cannot reference full framework targeted assembly).

link|improve this answer
excellent - this worked - I had to upgrade my WPF app client to use the full .NET Framework 4. Not sure what impact this will have on the client footprint? I did try downgrading the library I have to the .Net 4 Client Profile however when I did this it had similar issues with the recent Quartz.net 3rd party library I'd just started using. So it seems like using Quartz.net in my library project is ultimately forcing me to have to use the full .Net 4 framework in my UI WPF app. – Greg Jul 22 '10 at 1:06
I had this same problem as well when I tried referencing a project within the same solution. I upgraded to .NET Framework 4 from the Client Profile framework and I stopped receiving the compile errors. – bong Nov 1 '10 at 20:38
1  
A thousand blessings upon you and your children! I've been looking for an answer to this for hours. – sgriffinusa Jan 20 '11 at 20:52
May your land always be fertile. – dortzur Apr 2 '11 at 8:32
Long days and pleasant nights. – Paul Prewett May 4 '11 at 20:07
show 4 more comments
feedback

First I would verify that your project's generated information isn't corrupt. Do a clean and rebuild on your solution.

If that doesn't help, one thing I've seen work in the past for designer issues is opening up a windows forms project, then closing it again. This is a little chicken-entrails-ish, though, so don't hold your breath.

link|improve this answer
I'd tried clean and rebuild on your solution but no luck. Tried removing/adding/cleaning/rebuilding just the WPF app project and still no luck too. :( – Greg Jul 21 '10 at 23:51
feedback

It may work to close and restart Visual Studio. It sometimes seems to get "Stuck"

link|improve this answer
have already tried this too - no luck :( Wondering if there is some project level config I can delete or something such that VS2010 would rebuild? – Greg Jul 21 '10 at 23:56
Restarting VS worked for me. I had the same situation, intellisense showed that the type was there, but compile claimed it couldn't find it – huttelihut Oct 17 '11 at 11:33
feedback

You might also try eliminating the code you think you're having problems with and seeing if it compiles with no references to that code. If not, fix things until it compiles again, and then work your suspected problem code back in. Sometimes I get strange errors about classes or methods that I know are correct when the compiler doesn't like something else. Once I fix the thing that it's really getting hung up on, these 'phantom' errors disappear.

link|improve this answer
thanks - still didn't help in this particular case :( – Greg Jul 22 '10 at 0:04
feedback

Remove the assembly from GAC(C:\WINDOWS\assembly folder - select your assebly and right click and uninstall). because solution keeps refference using guid and if that guid is in GAC, it will keep taking GAC version for compilation.

link|improve this answer
feedback

We had a weird case of this that I just fixed in a solution. There was a hidden/whitespace character in front of a "using" statement in the main project. That project would build fine and the website worked fine, but the unit test project that referenced it could not be built.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.