nimi
nimi

Reputation: 5507

what are the best practices to separate resource file from the ASP.NET web project?

I have a web application project which contains few resource file. i am planning to create another one project for Mobile where i should be able to use the same resource files.

so can you suggest me some best practices to separate the resource files.

Let me know if you need any clarifications for the same.

Upvotes: 1

Views: 2563

Answers (2)

bytedev
bytedev

Reputation: 9089

I know this is an old one...but I would create a separate new project, MyProject.Localisation, and then place all the resx files in there. Marking them as Embedded Resource, Do not copy. Then reference that project from what ever project needs the resources.

Upvotes: 0

apros
apros

Reputation: 2878

It is possible that you can find an answer for your question here. In my opinion it is the best solution in this case

Upvotes: 2

Related Questions