diff options
author | Bob Arnson <bob@joyofsetup.com> | 2020-06-14 16:03:52 -0400 |
---|---|---|
committer | Bob Arnson <bob@firegiant.com> | 2020-06-14 16:31:22 -0400 |
commit | 1979837ff79b46ce0a03e25b82e239c37348ec4d (patch) | |
tree | 6423cb3919c04b82f498972258ecb25f5de011d9 /src/wixext | |
parent | 5aee3f30c28734fbbc3e89a6abd711dbc7158382 (diff) | |
download | wix-1979837ff79b46ce0a03e25b82e239c37348ec4d.tar.gz wix-1979837ff79b46ce0a03e25b82e239c37348ec4d.tar.bz2 wix-1979837ff79b46ce0a03e25b82e239c37348ec4d.zip |
Enable platform-specific CAs, including ARM64
- Update to latest dependencies.
Diffstat (limited to '')
-rw-r--r-- | src/wixext/NetFxCompiler.cs | 2 |
1 files changed, 1 insertions, 1 deletions
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 | |||
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.X86); | 148 | this.ParseHelper.CreateCustomActionReference(sourceLineNumbers, section, "NetFxScheduleNativeImage", this.Context.Platform, CustomActionPlatforms.ARM | CustomActionPlatforms.ARM64 | CustomActionPlatforms.X64 | CustomActionPlatforms.X86); |
149 | 149 | ||
150 | if (!this.Messaging.EncounteredError) | 150 | if (!this.Messaging.EncounteredError) |
151 | { | 151 | { |