Home - Forums-.NET - Spices.Net - Could not find any resources appropriate for the specified culture or the neutral culture

Spices.Net

NET code security, tools to protect, obfuscate, tamper defense, code and data safety, recover, convert, optimize, explore, browse and analyze .Net software.

This forum related to following products: Spices.Net Suite, Spices.Net Obfuscator, Spices.Net Decompiler

Could not find any resources appropriate for the specified culture or the neutral culture
Link Posted: 25-Apr-2011 13:04
Received this message within log.
{"An error occurred creating the form. See Exception.InnerException for details.  The error is: Could not find any resources appropriate for the specified culture or the neutral culture.  Make sure \"1.2.resources\" was correctly embedded or linked into assembly \"Xabc000\" at compile time, or that all the satellite assemblies required are loadable and fully signed."}

Anyone have any ideas.

Unable to execute after obfuscating
Link Posted: 25-Apr-2011 16:31
That's one of standard problem with serialization.
Seems you've obfuscated some class which is connected to its own resource and this class is trying to load that resource at runtime.
To solve that problem you need to exclude this class from obfuscation. Or you can use one of predefined obfuscation modes, just set ObfuscationOptions.Members = KeepsSerialization or Default or DefaultImproved.