aboutsummaryrefslogtreecommitdiff
path: root/src/wixext
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-09-20 17:03:05 -0400
committerBob Arnson <bob@firegiant.com>2020-09-20 17:05:19 -0400
commit3087d9b18196882c212e9c76f9caa050bb366e97 (patch)
treeb179107e7d486b104e076b7905a04880e21d9eaf /src/wixext
parenteb25f452c1ca1afb53c102e2619148092829cfe5 (diff)
downloadwix-3087d9b18196882c212e9c76f9caa050bb366e97.tar.gz
wix-3087d9b18196882c212e9c76f9caa050bb366e97.tar.bz2
wix-3087d9b18196882c212e9c76f9caa050bb366e97.zip
Remove 32-bit ARM support.
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 a8c1bca8..135e6883 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.ARM | CustomActionPlatforms.ARM64); 181 this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "SchedHttpUrlReservationsInstall", this.Context.Platform, CustomActionPlatforms.X86 | CustomActionPlatforms.X64 | CustomActionPlatforms.ARM64);
182 this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "SchedHttpUrlReservationsUninstall", this.Context.Platform, CustomActionPlatforms.X86 | CustomActionPlatforms.X64 | CustomActionPlatforms.ARM | CustomActionPlatforms.ARM64); 182 this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "SchedHttpUrlReservationsUninstall", this.Context.Platform, CustomActionPlatforms.X86 | CustomActionPlatforms.X64 | CustomActionPlatforms.ARM64);
183 } 183 }
184 } 184 }
185 185