From 8018df91dea67151a8d8ac3b88f7230c1ff59222 Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Fri, 10 Jul 2020 21:32:31 +1000 Subject: Add CreateIdentifierValueFromPlatform and BurnPlatforms. --- src/WixToolset.Extensibility/Data/BurnPlatforms.cs | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/WixToolset.Extensibility/Data/BurnPlatforms.cs (limited to 'src/WixToolset.Extensibility/Data') diff --git a/src/WixToolset.Extensibility/Data/BurnPlatforms.cs b/src/WixToolset.Extensibility/Data/BurnPlatforms.cs new file mode 100644 index 00000000..4b0edfdb --- /dev/null +++ b/src/WixToolset.Extensibility/Data/BurnPlatforms.cs @@ -0,0 +1,28 @@ +// 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 that have been supported by Burn. + /// + [Flags] + public enum BurnPlatforms + { + /// Not specified. + None = 0, + + /// x86. + X86 = 0x1, + + /// x64. + X64 = 0x2, + + /// arm. + ARM = 0x4, + + /// arm64. + ARM64 = 0x8, + } +} -- cgit v1.2.3-55-g6feb