diff options
| author | Bob Arnson <bob@firegiant.com> | 2026-02-04 20:47:04 -0500 |
|---|---|---|
| committer | Bob Arnson <github@bobs.org> | 2026-02-05 15:58:18 -0500 |
| commit | c258b72508f1b25a56e5d3ee3df08650ba1cbe36 (patch) | |
| tree | 0d5eaf7d732d4a6cb5abe663d2644447c9072220 /src/ext/Bal/stdbas/WixInternalUIBootstrapperApplication.cpp | |
| parent | a3d3963f806117ce123d95e8b77e73e1c1545b25 (diff) | |
| download | wix-c258b72508f1b25a56e5d3ee3df08650ba1cbe36.tar.gz wix-c258b72508f1b25a56e5d3ee3df08650ba1cbe36.tar.bz2 wix-c258b72508f1b25a56e5d3ee3df08650ba1cbe36.zip | |
Support dual-purpose packages in Burn.
Fixes https://github.com/wixtoolset/issues/issues/8958
Diffstat (limited to 'src/ext/Bal/stdbas/WixInternalUIBootstrapperApplication.cpp')
| -rw-r--r-- | src/ext/Bal/stdbas/WixInternalUIBootstrapperApplication.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ext/Bal/stdbas/WixInternalUIBootstrapperApplication.cpp b/src/ext/Bal/stdbas/WixInternalUIBootstrapperApplication.cpp index bae098d4..e746ff75 100644 --- a/src/ext/Bal/stdbas/WixInternalUIBootstrapperApplication.cpp +++ b/src/ext/Bal/stdbas/WixInternalUIBootstrapperApplication.cpp | |||
| @@ -708,7 +708,10 @@ private: | |||
| 708 | 708 | ||
| 709 | m_plannedAction = action; | 709 | m_plannedAction = action; |
| 710 | 710 | ||
| 711 | hr = m_pEngine->Plan(action); | 711 | // InternalUiBootstrapperApplication isn't in a position to let the user |
| 712 | // choose the scope, so we use the default. Unfortunately, a scope choice | ||
| 713 | // in the MSI UI can't "flow" back to affect bundle scope. | ||
| 714 | hr = m_pEngine->Plan(action, BOOTSTRAPPER_SCOPE_DEFAULT); | ||
| 712 | BalExitOnFailure(hr, "Failed to start planning packages."); | 715 | BalExitOnFailure(hr, "Failed to start planning packages."); |
| 713 | 716 | ||
| 714 | LExit: | 717 | LExit: |
