aboutsummaryrefslogtreecommitdiff
path: root/src/wixext
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2021-02-23 18:47:45 -0500
committerBob Arnson <bob@firegiant.com>2021-02-23 18:50:20 -0500
commit3b0f9180603844a49d3dfc814f0d5f08136a818e (patch)
tree31f91f2dc77fad6d3af9dc4787b29fc0919b7ec8 /src/wixext
parentee12b7fcba1a007783b9c7488d968c8c9a66bcbf (diff)
downloadwix-3b0f9180603844a49d3dfc814f0d5f08136a818e.tar.gz
wix-3b0f9180603844a49d3dfc814f0d5f08136a818e.tar.bz2
wix-3b0f9180603844a49d3dfc814f0d5f08136a818e.zip
Add custom action prefixes.
Diffstat (limited to 'src/wixext')
-rw-r--r--src/wixext/HttpCompiler.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wixext/HttpCompiler.cs b/src/wixext/HttpCompiler.cs
index 135e6883..e6246619 100644
--- a/src/wixext/HttpCompiler.cs
+++ b/src/wixext/HttpCompiler.cs
@@ -178,8 +178,8 @@ namespace WixToolset.Http
178 ComponentRef = componentId, 178 ComponentRef = componentId,
179 }); 179 });
180 180
181 this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "SchedHttpUrlReservationsInstall", this.Context.Platform, CustomActionPlatforms.X86 | CustomActionPlatforms.X64 | CustomActionPlatforms.ARM64); 181 this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "Wix4SchedHttpUrlReservationsInstall", this.Context.Platform, CustomActionPlatforms.X86 | CustomActionPlatforms.X64 | CustomActionPlatforms.ARM64);
182 this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "SchedHttpUrlReservationsUninstall", this.Context.Platform, CustomActionPlatforms.X86 | CustomActionPlatforms.X64 | CustomActionPlatforms.ARM64); 182 this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "Wix4SchedHttpUrlReservationsUninstall", this.Context.Platform, CustomActionPlatforms.X86 | CustomActionPlatforms.X64 | CustomActionPlatforms.ARM64);
183 } 183 }
184 } 184 }
185 185