From 08db827a9d320f24bedfb61cb6d6e1f2e6eb80f7 Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Tue, 3 Mar 2020 17:14:08 -0500 Subject: Add CreateCustomActionReference method ...to simplify creating custom action references following naming conventions. --- .../Data/CustomActionPlatforms.cs | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/WixToolset.Extensibility/Data/CustomActionPlatforms.cs (limited to 'src/WixToolset.Extensibility/Data') diff --git a/src/WixToolset.Extensibility/Data/CustomActionPlatforms.cs b/src/WixToolset.Extensibility/Data/CustomActionPlatforms.cs new file mode 100644 index 00000000..c3c5ba82 --- /dev/null +++ b/src/WixToolset.Extensibility/Data/CustomActionPlatforms.cs @@ -0,0 +1,31 @@ +// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. + +namespace WixToolset.Extensibility.Data +{ + using System; + + /// + /// Platforms supported by custom actions. + /// + [Flags] + public enum CustomActionPlatforms + { + /// Not specified. + None = 0, + + /// x86. + X86 = 0x1, + + /// x64. + X64 = 0x2, + + /// ia64. + IA64 = 0x4, + + /// arm. + ARM = 0x8, + + /// arm64. + ARM64 = 0x10 + } +} -- cgit v1.2.3-55-g6feb