I'm suddenly getting this error in my WP8 project, which seems to originate from generated code. I have a previous working version and the App.xaml is identical.
<Application.Resources>
<local:LocalizedStrings xmlns:local="clr-namespace:Bins" x:Key="LocalizedStrings"/>
</Application.Resources>
and the LocalisedStrings.vb file is intact.
Any ideas?
I had this message when the mobile project platform was "ARM", I changed to "any CPU".
Go to:
I also faced this issue. the root cause for my problem is as below.
1) I referenced below in my code. but i haven't added the library( System.Xml.Serialization.xml). Add Reference and select System.Xml.Serialization.xml to include the dll.
2) I use an usercontrol called FileList.xaml in the mainwindow
FileList.xaml
But i didnt add the class which inherits from IMultiValueConverter
MainWindow.xaml.cs(I missed the following code)
I had the same problem when compiling the standard Windows Phone Databound App template. Following steps worked for me:
%LOCALAPPDATA%\Microsoft\Phone Tools\CoreCon\
and delete the contents of the folders10.0
and11.0
In my case I had this error after downloading and installing a fresh Visual Studio 2012 (the initial release version) and trying to build the default blank Windows Phone template project straight out of the box - it was only resolved by updating Visual Studio 2012 Express to Update 5.