WiX Installer Template
A WiX scaffold that turns a build output into a signed MSI, shortcuts and all.
- 01Component harvesting
- 02Install layout
- 03Upgrade handling
Architecture Overview
A reusable WiX Toolset scaffold that turns a desktop app build into a Windows MSI. Directory layout, shortcuts, localization and upgrade handling are already wired up, so a new project starts from a working scaffold.
How it works
Core mechanics, failure recovery paths, and system design decisions.
Component harvesting
Heat harvests the published build output into components automatically, so the manifest stays correct as the project grows.
Install layout
Directory structure, shortcuts and localization are set up front and reused.
Upgrade handling
Upgrade logic is in from the start, so every later version replaces the last one cleanly.
Engineering Highlights
- •Manifests stay accurate on their own
- •Upgrade path is right from the first release
- •Drops into any MSBuild desktop project