aboutsummaryrefslogtreecommitdiff
path: root/src/wixext
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-09-20 17:09:52 -0400
committerBob Arnson <bob@firegiant.com>2020-09-20 17:12:28 -0400
commitd70e9e5ab5866c8e35b696fd169c9b62c6f5ee74 (patch)
tree95106f7c165ab59d9a54cf9277e122ff19cac54c /src/wixext
parent0016b37f80e0d1d1fa5c2ab803042456eafbb9e8 (diff)
downloadwix-d70e9e5ab5866c8e35b696fd169c9b62c6f5ee74.tar.gz
wix-d70e9e5ab5866c8e35b696fd169c9b62c6f5ee74.tar.bz2
wix-d70e9e5ab5866c8e35b696fd169c9b62c6f5ee74.zip
Remove 32-bit ARM support.
Diffstat (limited to 'src/wixext')
-rw-r--r--src/wixext/SqlCompiler.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wixext/SqlCompiler.cs b/src/wixext/SqlCompiler.cs
index 534fcc27..162306b8 100644
--- a/src/wixext/SqlCompiler.cs
+++ b/src/wixext/SqlCompiler.cs
@@ -798,8 +798,8 @@ namespace WixToolset.Sql
798 798
799 private void AddReferenceToInstallSqlData(IntermediateSection section, SourceLineNumber sourceLineNumbers) 799 private void AddReferenceToInstallSqlData(IntermediateSection section, SourceLineNumber sourceLineNumbers)
800 { 800 {
801 this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "InstallSqlData", this.Context.Platform, CustomActionPlatforms.X86 | CustomActionPlatforms.X64 | CustomActionPlatforms.ARM | CustomActionPlatforms.ARM64); 801 this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "InstallSqlData", this.Context.Platform, CustomActionPlatforms.X86 | CustomActionPlatforms.X64 | CustomActionPlatforms.ARM64);
802 this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "UninstallSqlData", this.Context.Platform, CustomActionPlatforms.X86 | CustomActionPlatforms.X64 | CustomActionPlatforms.ARM | CustomActionPlatforms.ARM64); 802 this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "UninstallSqlData", this.Context.Platform, CustomActionPlatforms.X86 | CustomActionPlatforms.X64 | CustomActionPlatforms.ARM64);
803 } 803 }
804 } 804 }
805} 805}