I have an app on Windows Embedded which uses .resx files to translate the app to different languages. Also I create an installation .cab file but I can't include the resx file to this cab.
How can I achieve this? Thanks for any tip
I have an app on Windows Embedded which uses .resx files to translate the app to different languages. Also I create an installation .cab file but I can't include the resx file to this cab.
How can I achieve this? Thanks for any tip
A few things:
*.resource.dll
assembly, that is typically in a subfolder with a name for the locale (e.g. en-us
or fr-ca
). You need to deploy those files/folders which is challenging because CABWIZ doesn't allow duplicate file names (and all resources have the same file name, just different folders). That scenario is handled by this SO question.