AssemblyPlatform Enumeration

Specifies a platform version of common language runtime (CLR).

Definition

Namespace: DevCase.Core.Diagnostics.CodeCompilation
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public enum AssemblyPlatform

Members

AnyCpu 0 An assembly to run on any platform.

The application will run as a 32-bit application on 32-bit versions of Windows and as a 64-bit application on 64-bit versions of Windows.

This flag is the default value.

AnyCpu32bitPreferred 1 An assembly to run on any platform.

The assembly will run as a 32-bit application on both 32-bit and 64-bit versions of Windows.

This flag is valid only for executables (.EXE) and requires .NET Framework 4.5.

X86 2 An assembly to be run by the 32-bit, x86-compatible CLR.
X64 3 An assembly to be run by the 64-bit CLR on a computer that supports the AMD64 or EM64T instruction set.
Itanium 4 An assembly to be run by the 64-bit CLR on a computer with an Itanium processor.
Arm 5 An assembly to be run on a computer with an ARM (Advanced RISC Machine) processor.

See Also