0

I am localizing a Windows Forms App written in C#, When I localize my app to different languages. Visual studio creates folder for each language like

\es-ES

\fr-FR etc

I would like to avoid this, because in my situation the app is present on user's drive root C:\ or E:\ etc I don't want to pollute the user's drive. I can however create one sub folder and let all the garbage go there.

Please advise how can I go about this.

Thanks,

Ahmed
  • 14,503
  • 22
  • 92
  • 150

1 Answers1

0

You can always use ILMerge to get one single deployable file. How to use ILMerge with satelite assemblies is mentioned here.

Community
  • 1
  • 1
Hadi Eskandari
  • 25,575
  • 8
  • 51
  • 65
  • Thannks, I already have a sub folder from where my app uses other third party assemblies and other storage related files, I have seen the method above which is a bit of a hack. I would prefer getting them to my sub folder.. – Ahmed Jun 28 '12 at 16:14