C#: Resource file refactoring

Posted by Svish on Stack Overflow See other posts from Stack Overflow or by Svish
Published on 2009-06-05T13:05:24Z Indexed on 2010/05/16 13:30 UTC
Read the original article Hit count: 123

Does anyone know of a good tool for refactoring resources in a visual studio 2008 solution?

We have a number of resource files with translated text in an assembly used for localizing our application. But they have gotten a bit messy... I would like to rename some of the keys, and move some of them into other resource files. And I would like those changes be done in my code, and the translated versions of the resource files as well. Maybe a some analysis on what strings are missing in the translated versions, and what strings have been removed from the original as well...

Does anyone know of a good visual studio extension or ReSharper plugin that can help me with this? Right now it is kind of a pain, because I have to first rename the key in the base resource file, then in the localized versions. And then compile to get all the compile errors resulting from the key which now have a different name, and then go through and fix them all... very annoying =/

© Stack Overflow or respective owner

Related posts about c#

Related posts about visual-studio-2008