diff options
Diffstat (limited to 'src/WixToolset.Extensibility/Data')
| -rw-r--r-- | src/WixToolset.Extensibility/Data/CustomActionPlatforms.cs | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/WixToolset.Extensibility/Data/CustomActionPlatforms.cs b/src/WixToolset.Extensibility/Data/CustomActionPlatforms.cs new file mode 100644 index 00000000..c3c5ba82 --- /dev/null +++ b/src/WixToolset.Extensibility/Data/CustomActionPlatforms.cs | |||
| @@ -0,0 +1,31 @@ | |||
| 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 supported by custom actions. | ||
| 9 | /// </summary> | ||
| 10 | [Flags] | ||
| 11 | public enum CustomActionPlatforms | ||
| 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>ia64.</summary> | ||
| 23 | IA64 = 0x4, | ||
| 24 | |||
| 25 | /// <summary>arm.</summary> | ||
| 26 | ARM = 0x8, | ||
| 27 | |||
| 28 | /// <summary>arm64.</summary> | ||
| 29 | ARM64 = 0x10 | ||
| 30 | } | ||
| 31 | } | ||
