views:

39

answers:

1

I have a normal class library. Recently, I localized this class library.

I also have another Silverlight class library, Which is basically a linked file project

<Link>Reports\Reports.cs</Link>

In that, I have included the same resx file as link reference as I done for other files. While running, it throws the following exception.

Could not find any resources appropriate for the specified culture or the neutral culture.  
Make sure "BCL.Resources.BCLNamespace.resources" was correctly embedded
 or linked into assembly "SilverlightBCL" at compile time, or that all the 
 satellite assemblies required are loadable and fully signed.
A: 

Keeping the Default namespace in Assembly2 (SilverlightBCL) as same as Assembly1 (BCL) fixes this issue. Thanks all :)

Avatar