mscorlib(4.0.0.0) API with additions
AssemblyNameFlags.cs
2 
3 namespace System.Reflection
4 {
7  [Flags]
8  [ComVisible(true)]
9  [__DynamicallyInvokable]
10  public enum AssemblyNameFlags
11  {
13  [__DynamicallyInvokable]
14  None = 0x0,
16  [__DynamicallyInvokable]
17  PublicKey = 0x1,
21  EnableJITcompileTracking = 0x8000,
23  [__DynamicallyInvokable]
24  Retargetable = 0x100
25  }
26 }
Specifies that just-in-time (JIT) compiler optimization is disabled for the assembly....
Specifies that just-in-time (JIT) compiler tracking is enabled for the assembly.
Specifies that the assembly can be retargeted at runtime to an assembly from a different publisher....
Definition: __Canon.cs:3
AssemblyNameFlags
Provides information about an T:System.Reflection.Assembly reference.
Specifies that a public key is formed from the full public key rather than the public key token.
Specifies that the class can be serialized.