Question

We use Eazfuscator.NET 3.3 to obfuscate our code. However, after adding this line to our AssemblyInfo.cs file for the dll we wish to encrypt, we are still unable to decode stack traces using the password defined as their help suggested:

[assembly: Obfuscation(Feature="encrypt symbol names with PASSWORD", Exclude=false)]

Has anyone had success with decoding stack traces using Eazfuscator.NET who could tell me what I am doing wrong?

Était-ce utile?

La solution

Ahh, the problem was due to a typo. Originally the attribute read

[assembly: Obfuscation(Feature="encrypt symbol names with PASSWORD", Exclude=false)]

when it should have been

[assembly: Obfuscation(Feature="encrypt symbol names with password PASSWORD", Exclude=false)]
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top