DoNotObfuscateClassAttribute.cs 668 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace OPS.Obfuscator.Attribute
  6. {
  7. /// <summary>
  8. /// Add this to a Class, so the whole class with all its content will not get obfuscated!
  9. /// But still its Method Bodys (String Obfuscation, Random Code generation ...)
  10. /// To not obfuscate Method Bodys too, add an additional Attribute: DoNotObfuscateMethodBodyAttribute to the classes or the specific methods.
  11. /// </summary>
  12. [AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface | AttributeTargets.Struct)]
  13. public class DoNotObfuscateClassAttribute : System.Attribute
  14. {
  15. }
  16. }