FileAttributes.cs 403 B

1234567891011121314151617
  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. namespace ILRuntime.Mono.Cecil {
  11. enum FileAttributes : uint {
  12. ContainsMetaData = 0x0000, // This is not a resource file
  13. ContainsNoMetaData = 0x0001, // This is a resource file or other non-metadata-containing file
  14. }
  15. }