main
cs 19 lines 491 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.Data
4 {
5 /// <summary>
6 /// Platforms supported by compiler.
7 /// </summary>
8 public enum Platform
9 {
10 /// <summary>x86.</summary>
11 X86,
12
13 /// <summary>x64.</summary>
14 X64,
15
16 /// <summary>arm64.</summary>
17 ARM64,
18 }
19 }