I'm working on localization for my application by using global resources. I was wanting to organize my files in differnet folders such as:
en-US
- Menu.resx
- HelpMsg.resx
de-CH
- Menu.de-CH.resx
- HelpMsg.de-CH.resx
The problem is during my testing for ASP.NET the localization doesn't work if the *.de-CH.resx files are in a different folder. If I moved them to the same folder as Menu.resx and HelpMsg.resx then it works fine!!
I have already tried setting the "Custom Tool Namespace" to something like just "Resources" but I have read other places that when looking at the DLL with reflector they see visual studio is automatically adding the folder name that it is in and seems to be ignoring the "Custom Tool Namespace" that is put in there.
How can I accomplish this?