diff options
Diffstat (limited to 'src/WixToolset.Extensibility/Data/BurnPlatforms.cs')
-rw-r--r-- | src/WixToolset.Extensibility/Data/BurnPlatforms.cs | 28 |
1 files changed, 28 insertions, 0 deletions
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 @@ | |||
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 that have been supported by Burn. | ||
9 | /// </summary> | ||
10 | [Flags] | ||
11 | public enum BurnPlatforms | ||
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>arm.</summary> | ||
23 | ARM = 0x4, | ||
24 | |||
25 | /// <summary>arm64.</summary> | ||
26 | ARM64 = 0x8, | ||
27 | } | ||
28 | } | ||