WP7 Silverlight Class Library Localization

I am creating a WP7 silverlight project of class libary that supports localization (English and German). I save all resources inside the class library itself. Changes in the language were correctly reflected only when the application was launched (adding a link to the project) using this library from the same solution.

But when I use the library (.dll) in another solution, localization does not seem to work. Any ideas how to solve this problem?

+3
source share
1 answer

You need to specify supported languages ​​in your main project. For Windows Phone 8, you can do this in the project properties. For Windows Phone 7, you need to manually modify the project file using a text editor.

0
source