I am having a weird problem with Visual Studio 2012, .NET 4.5 and WPF.
Views wont find references to any of my clases and I keep receiving the error "The name "..." does not exist in the namespace "clr-namespace" "
while intellisense do find any of my clases
What I've tried:
- xmlns:common="clr-namespace:IVT.Common.View;assembly=IVT"
- xmlns:common="clr-namespace:IVT.Common.View;assembly="
- xmlns:common="clr-namespace:IVT.Common.View"
- Moving my classes to other namespaces
- I restarted visual studio and my computer
- Changed the .NET version and the compilation method (x86/x64)
- I created new projects and they have this problem now too... but old project still work...
EVERY time intellisense would find classes but visual studio still throws that error...
Any idea?
Thanks.