How can I share a resource file between projects in Visual Studio?

I am using C # and how is the code for sharing a resource file between my projects in the same solution?

Thanks.

+6
c # visual-studio resources
source share
1 answer

You can add resx to an empty class project, change the visibility in the editor from internal to public, and then refer to this project from both other projects.

http://blog.dmbcllc.com/wp-content/uploads/2009/04/image.png (from: http://blog.dmbcllc.com/2009/04/02/silverlight-resx-files-and- internationalization / )

+12
source share

All Articles