Visual Studio - Resx File default 'internal' to 'public'

Robin Maben picture Robin Maben · Nov 25, 2010 · Viewed 53.1k times · Source

Every time I edit a resource file in VS, it regenerates the corresponding code and sets the class access modifier to internal.
It's a pain to Ctrl-F -> ReplaceAll every time I edit the resx. Is there a property/setting so that I can default this to public?

internal class MyResource {

     internal static global::System.Resources.ResourceManager ResourceManager {...}

}

I need all those internal to be public all the time.

Answer

Anton picture Anton · Nov 25, 2010

Instead of the ResXFileCodeGenerator, use the PublicResXFileCodeGenerator.

You can do this by setting this as the Custom Tool property in the Property Window for the Resx file you want public access to.

Edit: Alternatetively you can set the Access Modifier to public when you open the resx file in Visual Studio. The Access Modifier dropdown box can be found at the top of the form.