Eazfuscator.NET. Disable sealing

241 views Asked by At

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?

1

There are 1 answers

3
ogggre On BEST ANSWER

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+.