aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/Data/BurnPlatforms.cs
blob: 4b0edfdb6b2e6ec929575c54f2b0073e2ac5eaa7 (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
26
27
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;

    /// <summary>
    /// Platforms that have been supported by Burn.
    /// </summary>
    [Flags]
    public enum BurnPlatforms
    {
        /// <summary>Not specified.</summary>
        None = 0,

        /// <summary>x86.</summary>
        X86 = 0x1,

        /// <summary>x64.</summary>
        X64 = 0x2,

        /// <summary>arm.</summary>
        ARM = 0x4,

        /// <summary>arm64.</summary>
        ARM64 = 0x8,
    }
}