diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2020-07-10 21:32:31 +1000 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2020-07-10 21:34:46 +1000 |
| commit | 8018df91dea67151a8d8ac3b88f7230c1ff59222 (patch) | |
| tree | 123d5427c08c970c58b417d47054298dfae67c85 /src/WixToolset.Extensibility/Data | |
| parent | 6e66e38c43ee4feda2db611da347be8d9d4ff31c (diff) | |
| download | wix-8018df91dea67151a8d8ac3b88f7230c1ff59222.tar.gz wix-8018df91dea67151a8d8ac3b88f7230c1ff59222.tar.bz2 wix-8018df91dea67151a8d8ac3b88f7230c1ff59222.zip | |
Add CreateIdentifierValueFromPlatform and BurnPlatforms.
Diffstat (limited to 'src/WixToolset.Extensibility/Data')
| -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 | } | ||
