From 1be6baef099aa75fd45f41e55b8138ac2c7e0da3 Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Sun, 13 Feb 2022 00:46:54 -0500 Subject: Versioned extension ids: ComPlus, Msmq --- src/ext/Msmq/wixext/MsmqCompiler.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/ext/Msmq/wixext/MsmqCompiler.cs') 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 using System.Xml.Linq; using WixToolset.Data; using WixToolset.Extensibility; + using WixToolset.Extensibility.Data; using WixToolset.Msmq.Symbols; /// @@ -71,7 +72,6 @@ namespace WixToolset.Msmq { case "Component": var componentId = context["ComponentId"]; - var directoryId = context["DirectoryId"]; switch (element.Name.LocalName) { @@ -249,8 +249,8 @@ namespace WixToolset.Msmq symbol.Quota = quota; } - this.ParseHelper.CreateSimpleReference(section, sourceLineNumbers, SymbolDefinitions.CustomAction, "MessageQueuingInstall"); - this.ParseHelper.CreateSimpleReference(section, sourceLineNumbers, SymbolDefinitions.CustomAction, "MessageQueuingUninstall"); + this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "Wix4MessageQueuingInstall", this.Context.Platform, CustomActionPlatforms.X86 | CustomActionPlatforms.X64 | CustomActionPlatforms.ARM64); + this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "Wix4MessageQueuingUninstall", this.Context.Platform, CustomActionPlatforms.X86 | CustomActionPlatforms.X64 | CustomActionPlatforms.ARM64); } /// -- cgit v1.2.3-55-g6feb