If my application has a resource file inside a directory such as:
.\bin\Debug\en-US\AvalonControlLibrary1.resources.dll
Will the "en-US" directory be published
If yes, will that directory be created in the customer computers and the files in it updated
If no, does that mean ClickOnce doesn't support culture specific resources
Thanks in advance,
Roberto.

Can ClickOnce deploy resource directories and update files inside them ?
Ian Shimmings
You can download your culture specific resources with ClickOnce. There are a couple of ways to do this using Visual Studio.
1. Set 'Publish Language' property to 'English' or 'English (United States)' on the Publish Options Dialog. The Publish Options dialog is available by clicking the button labeled 'Options...' on the Publish Property Page. This will automatically deploy any resource files for the specified culture. If you choose 'English' (the parent culture), then en and en-US, etc. resources will be deployed. If you choose 'English (United States)' then only the en-Us resources will be deployed.
When setting the Publish Language, the deployment culture is also set, which is a part of the application identity. If you publish the same application to the same location and change the culture of the deployment manifest, some funky things will happen with the auto-update part of ClickOnce. If you would like to deploy several resources (not all under the same parent culture), I suggest using method #2.
2. Manually include the resource dlls to be deployed. To do this, first open the Application Files Dialog. The Applications Files Dialog is available by clicking the button labeled 'Application Files...' on the Publish Property Page. Click the checkbox labeled 'Show all files'. All the resource dlls for the project should now be seen and they will all have the Publish Status of 'Exclude (Auto)'. Simply change the Publish Status of each resource dll you wish to deploy to 'Include'. (You can multi-select rows and use the context menu to make this job easier.
In both methods described above the folder structure will be preserved, that is the 'en-Us' directory with be created and AvalonControlLibrary1.resources.dll will be deployed to that directory.
Best Regards,
Elizabeth Maher
---
This posting is provided "AS IS" with no warranties, and confers no rights.