main
cs 25 lines 638 Bytes
Raw
1 // 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.
2
3 namespace WixToolset.Extensibility.Data
4 {
5 using System;
6
7 /// <summary>
8 /// Platforms supported by custom actions.
9 /// </summary>
10 [Flags]
11 public enum CustomActionPlatforms
12 {
13 /// <summary>Not specified.</summary>
14 None = 0,
15
16 /// <summary>x86.</summary>
17 X86 = 0x1,
18
19 /// <summary>x64.</summary>
20 X64 = 0x2,
21
22 /// <summary>arm64.</summary>
23 ARM64 = 0x4,
24 }
25 }