Resource object with key "<key>" not found. Automatic Deployment of an ASP.NET MVC3 Application
I have an ASP.NET MVC 3 application that I have localized using LocalResources. Everything (as always) works on my machine, but when the application is deployed (by automatically deploying tfs) to my test environment, I get the following error:
Resource object with key not found
My resource files (in the App_LocalResources folders) are marked as EmbeddedResources, they have a custom tool associated with them, and their availability is set to Public.
When I look at what is being deployed in testing, the only hint of resources that I see are some culture-specific clouds in / bin (i.e. / bin / en containing one .dll).
My gut tells me that I somehow lack the default resources.
What am I missing?