blob: eea8a41901f900ada49703c00363d373ed8113b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// 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;
/// <summary>
/// Platforms supported by custom actions.
/// </summary>
[Flags]
public enum CustomActionPlatforms
{
/// <summary>Not specified.</summary>
None = 0,
/// <summary>x86.</summary>
X86 = 0x1,
/// <summary>x64.</summary>
X64 = 0x2,
/// <summary>arm64.</summary>
ARM64 = 0x4,
}
}
|