From 1979837ff79b46ce0a03e25b82e239c37348ec4d Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Sun, 14 Jun 2020 16:03:52 -0400 Subject: Enable platform-specific CAs, including ARM64 - Update to latest dependencies. --- src/wixext/NetFxCompiler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/wixext') diff --git a/src/wixext/NetFxCompiler.cs b/src/wixext/NetFxCompiler.cs index 58c8c0f6..e12cca6b 100644 --- a/src/wixext/NetFxCompiler.cs +++ b/src/wixext/NetFxCompiler.cs @@ -145,7 +145,7 @@ namespace WixToolset.Netfx this.ParseHelper.ParseForExtensionElements(this.Context.Extensions, intermediate, section, element); - this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "NetFxScheduleNativeImage", this.Context.Platform, CustomActionPlatforms.X86); + this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "NetFxScheduleNativeImage", this.Context.Platform, CustomActionPlatforms.ARM | CustomActionPlatforms.ARM64 | CustomActionPlatforms.X64 | CustomActionPlatforms.X86); if (!this.Messaging.EncounteredError) { -- cgit v1.2.3-55-g6feb