VS2013 Update 2 RC – Error APPX3210
If you stumble across the following error message with Visual Studio 2013 Update 2 RC:
1>[…]\Package.appxmanifest(19,64): error APPX3210: App manifest references the image ‘Assets/Icon150.png’ which does not have a candidate in main app package.
have a look a at the manifest file. In my case I had been using forward slashes in some of the asset paths. While this used to work before update 2 it now leads to an error. So to fix this I had to replace this:
<m2:DefaultTile Square310x310Logo="Assets\Icon310.png"
Wide310x150Logo="Assets/Icon150.png">
with this:
<m2:DefaultTile Square310x310Logo="Assets\Icon310.png"
Wide310x150Logo="Assets\Icon150.png">
and the error went away.
6 thoughts on “VS2013 Update 2 RC – Error APPX3210”
Just saved me time. Bless you.
You’re welcome 🙂
I encountered the same error with Visual Studio 2013 Update 2 Final and this error persists. My path already uses a backslash. 🙁
me too!
Same Issue. Already using backslashes.
The manifest is likely already cached somewhere in your output directory. I deleted the bin and obj directories and rebuilt and the error went away!