aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/Data
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-03-03 17:14:08 -0500
committerBob Arnson <bob@firegiant.com>2020-03-03 17:18:46 -0500
commit08db827a9d320f24bedfb61cb6d6e1f2e6eb80f7 (patch)
treed6ab42160ee07644c95e056d33d6cab99a7ae184 /src/WixToolset.Extensibility/Data
parent79e35340b26bc5517c5605ea73c911b176857f8f (diff)
downloadwix-08db827a9d320f24bedfb61cb6d6e1f2e6eb80f7.tar.gz
wix-08db827a9d320f24bedfb61cb6d6e1f2e6eb80f7.tar.bz2
wix-08db827a9d320f24bedfb61cb6d6e1f2e6eb80f7.zip
Add CreateCustomActionReference method
...to simplify creating custom action references following naming conventions.
Diffstat (limited to 'src/WixToolset.Extensibility/Data')
-rw-r--r--src/WixToolset.Extensibility/Data/CustomActionPlatforms.cs31
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
3namespace 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}