Search code examples
c#.netwinformssatellite-assembly

The satellite assembly named "XX.dll" for fallback culture "en-US" could not be found error in .NET app


I'm customizing an open-source .NET application. It compiles perfectly fine. But forms and controls refuse to show in designer, throwing the following error:

The satellite assembly named "XX.dll" for fallback culture "en-US" either could not be found or could not be loaded. This is generally a setup problem. Please consider reinstalling or repairing the application.

I know it's a multilingual application, but I'd like to drop additional languages and stick to simple captions customization via form designer.

Also, the issue prevents from adding images to controls. The same exception occurs on lines as the following one:

((System.Drawing.Image)(resources.GetObject("ItemXXX.Glyth")));

What do I need to change in order to disable satellite assembly resources?

Thanks...


Solution

  • Found the answer.

    Removing the following line from AssemblyInfo solved the problem:

    [assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]