NotObfuscatedCauseAttribute.cs 495 B

123456789101112131415161718192021
  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. /// Do not use! Gets attached to not obfuscated members in developments builds.
  9. /// </summary>
  10. [AttributeUsage(AttributeTargets.All)]
  11. public class NotObfuscatedCauseAttribute : System.Attribute
  12. {
  13. #pragma warning disable
  14. public NotObfuscatedCauseAttribute(String _Cause)
  15. {
  16. }
  17. #pragma warning restore
  18. }
  19. }