NINA.SetupBundle is the WiX Burn bootstrapper project. It wraps the MSI from NINA.Setup in a branded installer executable and controls bundle-level install UX.
Build shape from NINA.SetupBundle.wixproj:
- Project type: WiX v4 bundle
- Output type:
Bundle - Output name:
NINASetupBundle - Depends on
NINA.Setup
Bundle.wxs is the main entry point.
The bundle:
- uses
WixStandardBootstrapperApplication - applies a custom theme file (
RtfTheme.xml) and logo (ninasplash-small.png) - uses generated release notes as the displayed license file
- resolves a previous install folder from the registry and reuses it when available
- chains a single
MsiPackageforNINASetup.msi
The bundle is therefore a thin outer installer shell around the MSI, not a second independent package definition.
NINA.SetupBundle.wixproj also performs build-pipeline work:
PreBuildRuns Pandoc to convertRELEASE_NOTES.mdintoRELEASE_NOTES.rtfandRELEASE_NOTES.html.PostBuildDeletes the temporary RTF file and copies PDBs into the bundle output directory.
Those steps are part of the installer pipeline, not runtime behavior.
This project depends on:
NINA.Setup
No runtime code depends on it. All application file layout still comes from the MSI project.
- Change installer shell behavior here when the bundle UI, chained package behavior, or release-note presentation needs to change.
- Keep actual application file packaging in
NINA.Setup; this project should stay focused on the outer bootstrapper. - If you change release-note generation or branding assets, update both the WiX markup and the prebuild/postbuild steps.