// 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, /// arm64. ARM64 = 0x4, } }