I have a project with a .NET library that I messed up with ConfuserEx. During the protection run, I received a warning that states the following:
[WARN] [foo.dll] SN Key is not provided for a signed module, the output may not be working.
The fact is that the assembly is signed with a strong key name. However, after that, the code seems to work without problems.
Two questions arise:
- How do you detect the actual problem if the output fails?
- How do I provide an SN key to get rid of the warning?
Neither the software documentation nor the cli output gave me directions on how to include the keys. Copying the key to the same folder as the DLL did not resolve the warning.
source
share