user2715109
user2715109

Reputation: 351

System.Resources.MissingManifestResourceException: Could not find any resources appropriate for the specified culture or the neutral culture

I have a class library project that contains a Resource file. Basically following the pattern of Microsoft.AspNet.Identity. The problem is that at the time of using a resource the exception System.Resources.MissingManifestResourceException is raised.

I don't understand why my WebApp crashes when using my library resources and not when using Identity resources.

Any hint?

Upvotes: 0

Views: 1832

Answers (1)

user2715109
user2715109

Reputation: 351

My problem was that the Class Library namespace didn't match the Assembly Name. I just set my default namespace for the Assembly name and it works.

I don't like it but whatever...

Upvotes: 1

Related Questions