Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Contains values that describe run-time features of an assembly.
Syntax
typedef enum _AssemblyFlags {
afNone = 0x00000000,
afInMemory = 0x00000001,
afCleanModules = 0x00000002,
afNoRefHash = 0x00000004,
afNoDupTypeCheck = 0x00000008,
afDupeCheckTypeFwds = 0x00000010,
} AssemblyFlags;
Members
Member | Description |
---|---|
afNone |
Normal case. |
afInMemory |
An InMemory single-file assembly the filename == AssemblyName. |
afCleanModules |
Use DeleteToken and Merging to remove the AssemblyAttributesGoHere. |
afNoRefHash |
Do not generate hashes for AssemblyRefs. |
afNoDupTypeCheck |
Do not check for duplicate types (ExportedType table + manifest file's TypeDef table). |
afDupeCheckTypeFwds |
Do dupe checking for type forwarders. This is so you can specify afNoDupTypeCheck for regular typedefs + afDupeCheckTypeFwds. |
Requirements
Platforms: See .NET supported operating systems.
Header: MsCorEE.h
Library: Included as a resource in MsCorEE.dll
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.