Is there an easy way to embed the localized resources generated automatically by Visual Studio into the .exe? These resources are generated when we translate some form using Visual Studio Tools. These files are located inside a directory that contain the "code of the region", like pt-BR or es-CL. They are .dll. I've tried ILMerge and Fody, whitout success.
Resolved:
It was necessary to use "ILMerge" and implement a specific class to load the localized assembly from the ".exe". That's not an easy way, but works. Here's the solution: Single-assembly multi-language Windows Forms deployment (ILMerge and satellite assemblies / localization) - possible?