Skip to content

Wix4 Release v2.3.1.0

Compare
Choose a tag to compare
@oleg-shilo oleg-shilo released this 04 Aug 09:27
· 324 commits to master since this release
43b78ff

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.