DoNotObfuscateMethodBodyAttribute.cs 568 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. #if Obfuscator_Free
  6. #else
  7. namespace OPS.Obfuscator.Attribute
  8. {
  9. /// <summary>
  10. /// Add this to an Class to skip obfuscation of all Method Bodys, or to an specific Method to skip its Method Body.
  11. /// String Obfuscation, Random Code generation, ... are part of the Method Body obfuscation.
  12. /// </summary>
  13. [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)]
  14. public class DoNotObfuscateMethodBodyAttribute : System.Attribute
  15. {
  16. }
  17. }
  18. #endif