Wix4 Release v2.3.1.0
Wix4 Release v2.3.1.0s the
The most significant change in this release is the ability to use build dependencies not available in the default WiX locations:
WixTools.SignTool = @"tools\signtool.exe";
WixTools.MakeSfxCA = @"tools\WixToolset.Dtf.MakeSfxCA.exe";
WixTools.Heat = @"tools\heat.exe";
WixTools.DtfWindowsInstaller = @"tools\WixToolset.Dtf.WindowsInstaller.dll";
WixTools.WixToolsetMbaCore = @"tools\WixToolset.Mba.Core.dll";
WixTools.SfxCAx64 = @"tools\x64\SfxCA.dll";
WixTools.SfxCAx86 = @"tools\x86\SfxCA.dll";
WixTools.WixExtensionsDir = @"%userprofile%\.nuget\packages";
Changes:
- #1574: Cannot build .net 8 example project
- #1587 Support for pulling in dlls for runtime dependencies
- VSTemplates update. Added warning message about
project.GUID
. Triggered by #1597 Contributed by @fredemmott - Added error handling to continue execution if WiX extension is not installed. The error will still be reported by the WiX compiler
- Added
Project.AddCastomActionRefAssembliesOf
to add CA-referenced assemblies programmatically.