diff options
author | Bob Arnson <bob@firegiant.com> | 2020-09-20 16:58:33 -0400 |
---|---|---|
committer | Bob Arnson <bob@firegiant.com> | 2020-09-20 17:01:10 -0400 |
commit | 4bcd57b4b7a9983b96a6c63522b35747e844cac3 (patch) | |
tree | b285fc344665ff2325105028cb4ae9ca73239b4b /src/wixext | |
parent | 98aec4fbb3a6f8e4f6db7282c9370323d331cf9d (diff) | |
download | wix-4bcd57b4b7a9983b96a6c63522b35747e844cac3.tar.gz wix-4bcd57b4b7a9983b96a6c63522b35747e844cac3.tar.bz2 wix-4bcd57b4b7a9983b96a6c63522b35747e844cac3.zip |
Remove 32-bit ARM support.
Diffstat (limited to 'src/wixext')
-rw-r--r-- | src/wixext/FirewallCompiler.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wixext/FirewallCompiler.cs b/src/wixext/FirewallCompiler.cs index e3cf201b..8eef2fb2 100644 --- a/src/wixext/FirewallCompiler.cs +++ b/src/wixext/FirewallCompiler.cs | |||
@@ -300,8 +300,8 @@ namespace WixToolset.Firewall | |||
300 | symbol.Attributes = attributes; | 300 | symbol.Attributes = attributes; |
301 | } | 301 | } |
302 | 302 | ||
303 | this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "SchedFirewallExceptionsInstall", this.Context.Platform, CustomActionPlatforms.ARM | CustomActionPlatforms.ARM64 | CustomActionPlatforms.X64 | CustomActionPlatforms.X86); | 303 | this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "SchedFirewallExceptionsInstall", this.Context.Platform, CustomActionPlatforms.ARM64 | CustomActionPlatforms.X64 | CustomActionPlatforms.X86); |
304 | this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "SchedFirewallExceptionsUninstall", this.Context.Platform, CustomActionPlatforms.ARM | CustomActionPlatforms.ARM64 | CustomActionPlatforms.X64 | CustomActionPlatforms.X86); | 304 | this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "SchedFirewallExceptionsUninstall", this.Context.Platform, CustomActionPlatforms.ARM64 | CustomActionPlatforms.X64 | CustomActionPlatforms.X86); |
305 | } | 305 | } |
306 | } | 306 | } |
307 | 307 | ||