简体   繁体   中英

Eazfuscator.NET. Disable sealing

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM