Search code examples
.netobfuscationeazfuscator

Eazfusctor.net - Excluding Files


I am using Eazfuscator.NET to obfuscate my project.

I sifted through the documentation of Eazfuscator (perhaps not in-depth enough) and was wondering how to exclude specific .cs files of my project from obfuscation.


Solution

  • I've found the answer after reading more in-depth into the documentation, haha:

    Here is for future reference if anyone else is looking into it:

    [System.Reflection.ObfuscationAttribute(Feature = "renaming", ApplyToMembers = true)]
    

    ^This is for disabling class and its members renaming only.