ManifestResourceAttributes.cs 448 B

123456789101112131415161718192021
  1. //
  2. // Author:
  3. // Jb Evain (jbevain@gmail.com)
  4. //
  5. // Copyright (c) 2008 - 2015 Jb Evain
  6. // Copyright (c) 2008 - 2011 Novell, Inc.
  7. //
  8. // Licensed under the MIT/X11 license.
  9. //
  10. using System;
  11. namespace ILRuntime.Mono.Cecil {
  12. [Flags]
  13. public enum ManifestResourceAttributes : uint {
  14. VisibilityMask = 0x0007,
  15. Public = 0x0001, // The resource is exported from the Assembly
  16. Private = 0x0002 // The resource is private to the Assembly
  17. }
  18. }