aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2021-02-23 18:27:41 -0500
committerBob Arnson <bob@firegiant.com>2021-02-23 18:29:39 -0500
commit856e76f63fe19c21a3f0f91b7d04552901b4f733 (patch)
treebbcd7491c87e6fedcb6b7c788d65de6086399786
parent6c1ef0970be62ca45c4b85191d4e803ff4015c28 (diff)
downloadwix-856e76f63fe19c21a3f0f91b7d04552901b4f733.tar.gz
wix-856e76f63fe19c21a3f0f91b7d04552901b4f733.tar.bz2
wix-856e76f63fe19c21a3f0f91b7d04552901b4f733.zip
Add custom action prefixes.
-rw-r--r--src/wixext/NetFxCompiler.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wixext/NetFxCompiler.cs b/src/wixext/NetFxCompiler.cs
index 1a7981f5..90aa8bcb 100644
--- a/src/wixext/NetFxCompiler.cs
+++ b/src/wixext/NetFxCompiler.cs
@@ -145,7 +145,7 @@ namespace WixToolset.Netfx
145 145
146 this.ParseHelper.ParseForExtensionElements(this.Context.Extensions, intermediate, section, element); 146 this.ParseHelper.ParseForExtensionElements(this.Context.Extensions, intermediate, section, element);
147 147
148 this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "NetFxScheduleNativeImage", this.Context.Platform, CustomActionPlatforms.ARM64 | CustomActionPlatforms.X64 | CustomActionPlatforms.X86); 148 this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "Wix4NetFxScheduleNativeImage", this.Context.Platform, CustomActionPlatforms.ARM64 | CustomActionPlatforms.X64 | CustomActionPlatforms.X86);
149 149
150 if (!this.Messaging.EncounteredError) 150 if (!this.Messaging.EncounteredError)
151 { 151 {