aboutsummaryrefslogtreecommitdiff
path: root/src/wixext
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-09-20 16:49:56 -0400
committerBob Arnson <bob@firegiant.com>2020-09-20 16:51:47 -0400
commite84996576e588d27a7b1c61423c1e10c929b8b1a (patch)
tree5704c37d291100a7216e4ba5c646b68485176f2f /src/wixext
parent6d17a027ff6155ed50f78858cad17d1baef9856d (diff)
downloadwix-e84996576e588d27a7b1c61423c1e10c929b8b1a.tar.gz
wix-e84996576e588d27a7b1c61423c1e10c929b8b1a.tar.bz2
wix-e84996576e588d27a7b1c61423c1e10c929b8b1a.zip
Remove 32-bit ARM support.
Diffstat (limited to 'src/wixext')
-rw-r--r--src/wixext/DependencyCompiler.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wixext/DependencyCompiler.cs b/src/wixext/DependencyCompiler.cs
index 36a24c67..4aaa373b 100644
--- a/src/wixext/DependencyCompiler.cs
+++ b/src/wixext/DependencyCompiler.cs
@@ -362,7 +362,7 @@ namespace WixToolset.Dependency
362 362
363 if (PackageType.None == packageType) 363 if (PackageType.None == packageType)
364 { 364 {
365 this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "DependencyCheck", this.Context.Platform, CustomActionPlatforms.X86 | CustomActionPlatforms.X64 | CustomActionPlatforms.ARM | CustomActionPlatforms.ARM64); 365 this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "DependencyCheck", this.Context.Platform, CustomActionPlatforms.X86 | CustomActionPlatforms.X64 | CustomActionPlatforms.ARM64);
366 366
367 // Generate registry rows for the provider using binder properties. 367 // Generate registry rows for the provider using binder properties.
368 var keyProvides = String.Concat(DependencyCommon.RegistryRoot, key); 368 var keyProvides = String.Concat(DependencyCommon.RegistryRoot, key);
@@ -568,7 +568,7 @@ namespace WixToolset.Dependency
568 568
569 private void AddReferenceToWixDependencyRequire(IntermediateSection section, SourceLineNumber sourceLineNumbers) 569 private void AddReferenceToWixDependencyRequire(IntermediateSection section, SourceLineNumber sourceLineNumbers)
570 { 570 {
571 this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "DependencyRequire", this.Context.Platform, CustomActionPlatforms.X86 | CustomActionPlatforms.X64 | CustomActionPlatforms.ARM | CustomActionPlatforms.ARM64); 571 this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "DependencyRequire", this.Context.Platform, CustomActionPlatforms.X86 | CustomActionPlatforms.X64 | CustomActionPlatforms.ARM64);
572 } 572 }
573 } 573 }
574} 574}