PackageDependencyProcessorArchitectures 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.
Defines the processor architectures for a framework package dependency that you create by using the PackageDependency.Create method.
This enumeration supports a bitwise combination of its member values.
public enum class PackageDependencyProcessorArchitectures
/// [System.Flags]
/// [Windows.Foundation.Metadata.Version(1)]
enum class PackageDependencyProcessorArchitectures
/// [System.Flags]
/// [Windows.Foundation.Metadata.ContractVersion(Microsoft.Windows.ApplicationModel.DynamicDependency.DynamicDependencyContract, 65536)]
enum class PackageDependencyProcessorArchitectures
[System.Flags]
[Windows.Foundation.Metadata.Version(1)]
public enum PackageDependencyProcessorArchitectures
[System.Flags]
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.Windows.ApplicationModel.DynamicDependency.DynamicDependencyContract), 65536)]
public enum PackageDependencyProcessorArchitectures
var value = Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependencyProcessorArchitectures.none
Public Enum PackageDependencyProcessorArchitectures
- Inheritance
-
PackageDependencyProcessorArchitectures
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | No processor architecture is specified. |
Neutral | 1 | Specifies the neutral architecture. |
X86 | 2 | Specifies the x86 architecture. |
X64 | 4 | Specifies the x64 architecture. |
Arm | 8 | Specifies the ARM architecture. |
Arm64 | 16 | Specifies the ARM64 architecture. |
X86OnArm64 | 32 | Specifies the x86/A64 architecture. |