blob: 193a0e057fd884e54b87f1215525ba3ef12ebebf (
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.Data
{
/// <summary>
/// Platforms supported by compiler.
/// </summary>
public enum Platform
{
/// <summary>x86.</summary>
X86,
/// <summary>x64.</summary>
X64,
/// <summary>ia64.</summary>
IA64,
/// <summary>arm.</summary>
ARM,
/// <summary>arm64.</summary>
ARM64,
}
}
|