I am setting up an open source .NET application. It compiles fine. But the forms and controls refuse to show in the designer, causing the following error:
A satellite assembly called "XX.dll" for the backup culture "en-US" either could not be found or could not be loaded. This is usually a setup problem. Please reinstall or fix the application.
I know this is a multilingual application, but I would like to add additional languages ββand stick to a simple signature setup through the form builder.
In addition, the problem does not allow adding images to the controls. The same exception occurs on lines like the following:
((System.Drawing.Image)(resources.GetObject("ItemXXX.Glyth")));
What do I need to change to disable satellite assembly resources?
Thanks...
source share