AssemblyFlags Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
This enumeration supports a bitwise combination of its member values.
public enum class AssemblyFlags
[System.Flags]
public enum AssemblyFlags
[<System.Flags>]
type AssemblyFlags =
Public Enum AssemblyFlags
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
PublicKey | 1 | The assembly reference holds the full (unhashed) public key. Not applicable on assembly definition. |
Retargetable | 256 | The implementation of the referenced assembly used at runtime is not expected to match the version seen at compile time. |
WindowsRuntime | 512 | The assembly contains Windows Runtime code. |
ContentTypeMask | 3584 | Content type masked bits that correspond to values of AssemblyContentType. |
DisableJitCompileOptimizer | 16384 | Just-In-Time (JIT) compiler optimization is disabled for the assembly. |
EnableJitCompileTracking | 32768 | Just-In-Time (JIT) compiler tracking is enabled for the assembly. |