Bring jbevain/cecil's commit a2c944bd45b81443fd61cfd27d98ff551fa6938c, Add enum value...
[mono.git] / mcs / class / Mono.Cecil / Mono.Cecil / AssemblyFlags.cs
index 9231fc8406c6b263e0a5fa794b7cc0b75776a07a..72a0eb06c2007c894f1ccde20529337a2cf42b92 100644 (file)
@@ -4,7 +4,7 @@
 // Author:
 //   Jb Evain (jbevain@gmail.com)
 //
-// (C) 2005 Jb Evain
+// Copyright (c) 2008 - 2011 Jb Evain
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-namespace Mono.Cecil {
+using System;
 
-       using System;
+namespace Mono.Cecil {
 
        [Flags]
-       public enum AssemblyFlags : uint {
+       public enum AssemblyAttributes : uint {
                PublicKey                                               = 0x0001,
                SideBySideCompatible                    = 0x0000,
                Retargetable                                    = 0x0100,
-               EnableJITcompileTracking                = 0x8000,
-               DisableJITcompileOptimizer              = 0x4000
+               WindowsRuntime                                  = 0x0200,
+               DisableJITCompileOptimizer              = 0x4000,
+               EnableJITCompileTracking                = 0x8000,
        }
 }