aboutsummaryrefslogtreecommitdiff
path: root/src/ext/Msmq/wixext/MsmqCompiler.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ext/Msmq/wixext/MsmqCompiler.cs')
-rw-r--r--src/ext/Msmq/wixext/MsmqCompiler.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ext/Msmq/wixext/MsmqCompiler.cs b/src/ext/Msmq/wixext/MsmqCompiler.cs
index cfc4ef65..8a811d40 100644
--- a/src/ext/Msmq/wixext/MsmqCompiler.cs
+++ b/src/ext/Msmq/wixext/MsmqCompiler.cs
@@ -7,6 +7,7 @@ namespace WixToolset.Msmq
7 using System.Xml.Linq; 7 using System.Xml.Linq;
8 using WixToolset.Data; 8 using WixToolset.Data;
9 using WixToolset.Extensibility; 9 using WixToolset.Extensibility;
10 using WixToolset.Extensibility.Data;
10 using WixToolset.Msmq.Symbols; 11 using WixToolset.Msmq.Symbols;
11 12
12 /// <summary> 13 /// <summary>
@@ -71,7 +72,6 @@ namespace WixToolset.Msmq
71 { 72 {
72 case "Component": 73 case "Component":
73 var componentId = context["ComponentId"]; 74 var componentId = context["ComponentId"];
74 var directoryId = context["DirectoryId"];
75 75
76 switch (element.Name.LocalName) 76 switch (element.Name.LocalName)
77 { 77 {
@@ -249,8 +249,8 @@ namespace WixToolset.Msmq
249 symbol.Quota = quota; 249 symbol.Quota = quota;
250 } 250 }
251 251
252 this.ParseHelper.CreateSimpleReference(section, sourceLineNumbers, SymbolDefinitions.CustomAction, "MessageQueuingInstall"); 252 this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "Wix4MessageQueuingInstall", this.Context.Platform, CustomActionPlatforms.X86 | CustomActionPlatforms.X64 | CustomActionPlatforms.ARM64);
253 this.ParseHelper.CreateSimpleReference(section, sourceLineNumbers, SymbolDefinitions.CustomAction, "MessageQueuingUninstall"); 253 this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "Wix4MessageQueuingUninstall", this.Context.Platform, CustomActionPlatforms.X86 | CustomActionPlatforms.X64 | CustomActionPlatforms.ARM64);
254 } 254 }
255 255
256 /// <summary> 256 /// <summary>