DoNotRenameAttribute.cs 380 B

123456789101112131415
  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 an Class, Field, Method, whatever and its name will not get renamed (obfuscated)!
  9. /// </summary>
  10. [AttributeUsage(AttributeTargets.All)]
  11. public class DoNotRenameAttribute : System.Attribute
  12. {
  13. }
  14. }