Hi everyone, I have a .Net 3.5 application written mostly in C# that uses .resx files to store internationalization data for several different languages, consisting of strings, control sizes and positions, etc. What I'm trying to figure out is this: it is possible to compile my application in such a way that the default culture data will be pulled out into a satellite assembly in much the same way as the other culture data?
I'm trying to prevent a situation where the user uses the software in one (non-default) language, removes the culture folder in the bin directory, and then has access to the default language.
If this is impractical or impossible due to framework limitations, is it possible to perhaps compile in a language other than the default, so that I could give a single, non-default version of the application to the user?
Thanks so much for your answers.