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 
11 using System;
12 
13 namespace Mono.Cecil {
14 
15 	[Flags]
16 	public enum AssemblyAttributes : uint {
17 		PublicKey					 	= 0x0001,
18 		SideBySideCompatible			= 0x0000,
19 		Retargetable					= 0x0100,
20 		WindowsRuntime					= 0x0200,
21 		DisableJITCompileOptimizer		= 0x4000,
22 		EnableJITCompileTracking		= 0x8000,
23 	}
24 }
25