I need to disable Sealing of Terminal Classes feature. But I cannot find which name I should use for ObfuscationAttribute.
I tried this:
[Obfuscation(Feature = "sealing", Exclude = true)]
class MyClass {
}
But it does not work.
Where I can find names for all Eazfuscator.NET features?
Use auto-sealing
instead of sealing
:
[Obfuscation(Feature = "auto-sealing", Exclude = true)]
class MyClass
{
}
The official support for sealing
alternative name will be available since Eazfuscator.NET 2019.4+.