Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a solution which has approximately 30 win forms in it. These forms need to be localized for three other languages. I have written an application which generates resx files for these languages for the windows forms.

Now I have 90 resx files generated and located at the same place where their original resx files reside. What I want is not to add these existing resources manually.

Is there any way to add these existing resources at once in Visual studio or somehow programmatically?

share|improve this question

1 Answer

Programatically you're probably looking at this: http://msdn.microsoft.com/en-us/library/envdte.projectitems.addfromfile(v=vs.100).aspx

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.