The [NeutralResourceLanguage] attribute is missing on the entry assembly

I’m getting the same thing.. Maybe their new update they just made doesn’t work? Found it… Update Assembly.cs with this: using System.Resources; // Add this to the top.. [assembly: NeutralResourcesLanguage(“en-US”, UltimateResourceFallbackLocation.Satellite)] This worked for me.. Cheers.. Note per Blakomen: If you are submitting an application for worldwide publishing, you should use NeutralResourcesLanguage(“en”), not just “en-US” … Read more