For my C# apps I need to have default/neutral resources placed in a sattelight assembly, such that the output of a build looks like:
MyApp.exe
-AND-
MyApp.resources.dll <- containing default/neutral resources
How can I accomplish this using VS2008 and .NET runtime 2.0 or greater?
Secondary question:
How to keep the resources in the exe, and ALSO create a sattelite assembly dll for en (a complete one, not an empty one that falls back on looking in the main assembly exe).
For my C# apps I need to have default/neutral resources placed in a sattelight
Share
Create a separate project called MyApp.Resources that only contains your resources. Have your main project depend on/refer to that project.