aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Platform.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Platform.cs')
-rw-r--r--src/WixToolset.Data/Platform.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/WixToolset.Data/Platform.cs b/src/WixToolset.Data/Platform.cs
new file mode 100644
index 00000000..4edc9af0
--- /dev/null
+++ b/src/WixToolset.Data/Platform.cs
@@ -0,0 +1,22 @@
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
3namespace 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>ia64.</summary>
17 IA64,
18
19 /// <summary>arm.</summary>
20 ARM
21 }
22}