aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2021-02-23 18:35:00 -0500
committerBob Arnson <bob@firegiant.com>2021-02-23 18:37:21 -0500
commitd7a5afaf95cb942c572074b5c697937ef3e25e38 (patch)
tree94557fb476fd11f5a8669cb70ac01efd385c5d8c
parent0f2fb968a2afdd9e950727250a8069f37bd3d2fc (diff)
downloadwix-d7a5afaf95cb942c572074b5c697937ef3e25e38.tar.gz
wix-d7a5afaf95cb942c572074b5c697937ef3e25e38.tar.bz2
wix-d7a5afaf95cb942c572074b5c697937ef3e25e38.zip
Add custom action prefixes.
-rw-r--r--src/wixext/FirewallCompiler.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wixext/FirewallCompiler.cs b/src/wixext/FirewallCompiler.cs
index 8eef2fb2..cbe82d37 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.ARM64 | CustomActionPlatforms.X64 | CustomActionPlatforms.X86); 303 this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "Wix4SchedFirewallExceptionsInstall", this.Context.Platform, CustomActionPlatforms.ARM64 | CustomActionPlatforms.X64 | CustomActionPlatforms.X86);
304 this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "SchedFirewallExceptionsUninstall", this.Context.Platform, CustomActionPlatforms.ARM64 | CustomActionPlatforms.X64 | CustomActionPlatforms.X86); 304 this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "Wix4SchedFirewallExceptionsUninstall", this.Context.Platform, CustomActionPlatforms.ARM64 | CustomActionPlatforms.X64 | CustomActionPlatforms.X86);
305 } 305 }
306 } 306 }
307 307