Update MSI build for UtilCA; bump app version to 1.6.0.0#10
Conversation
Enhanced BuildMSI.ps1 to set UtilCA based on platform and include WixToolset.Util.wixext in the WiX build process. Updated Package.appxmanifest to increase the application version from 1.5.0.0 to 1.6.0.0.
There was a problem hiding this comment.
Pull request overview
This PR updates the MSI build pipeline to correctly provide the WiX Util custom action binary based on target platform and ensures the WiX Util extension is included during wix build. It also bumps the app package version to 1.6.0.0 so the installer/product version aligns with the new release.
Changes:
- Bump
Package.appxmanifestversion from 1.5.0.0 to 1.6.0.0. - Update
BuildMSI.ps1to setUtilCAbased on platform (x86 vs x64). - Add
WixToolset.Util.wixextto thewix buildinvocation so$(var.UtilCA)resolves.
Reviewed changes
Copilot reviewed 1 out of 1 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| Package.appxmanifest | Version bump to 1.6.0.0 for the app identity/package. |
| BuildMSI.ps1 | Passes UtilCA define and includes WixToolset.Util.wixext during MSI build. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| $utilCA = if ($Platform -eq "x86") { "Wix4UtilCA_X86" } else { "Wix4UtilCA_X64" } | ||
|
|
There was a problem hiding this comment.
Enhanced BuildMSI.ps1 to set UtilCA based on platform and include WixToolset.Util.wixext in the WiX build process. Updated Package.appxmanifest to increase the application version from 1.5.0.0 to 1.6.0.0.