LinkTarget 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.
Link targets available for LinkWithAttribute
This enumeration supports a bitwise combination of its member values.
[System.Flags]
public enum LinkTarget
type LinkTarget =
- Inheritance
-
LinkTarget
- Attributes
Fields
Arm64 | 32 | A flag that signifies that the native library supports the ARM-64 architecture. |
ArmV6 | 2 | A flag that signifies that the native library supports the ARMv6 architecture. |
ArmV7 | 4 | A flag that signifies that the native library supports the ARMv7 architecture. |
ArmV7s | 16 | A flag that signifies that the native library supports the ARMv7s architecture. |
i386 | 1 | A flag that signifies that the native library supports the Simulator (i386 architecture). |
Simulator | 1 | A flag that signifies that the native library supports the Simulator (i386 architecture). |
Simulator64 | 64 | A flag that signifies that the native library supports the Simulator (x86-64 architecture). |
Thumb | 8 | A flag that specifies that the native library targets the Thumb subset of ArmV6 or ArmV7. |
x86_64 | 64 | A flag that signifies that the native library supports the Simulator (x86-64 architecture). |
Remarks
LinkTarget may be combined for native libraries which target multiple platforms.
The LinkTarget value for LinkWith attributes is deprecated and ignored, instead any native libraries are inspected to determine the architectures they actually contain.