From 5658492062bf28ffb670ede15cbd1413bf1182d8 Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Tue, 17 Feb 2026 19:41:03 -0500 Subject: Lock upgrade bundles to original bundle's scope. Fixes https://github.com/wixtoolset/issues/issues/9236 --- .../WixToolset.BootstrapperApplicationApi/IBootstrapperEngine.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/api/burn') diff --git a/src/api/burn/WixToolset.BootstrapperApplicationApi/IBootstrapperEngine.cs b/src/api/burn/WixToolset.BootstrapperApplicationApi/IBootstrapperEngine.cs index 9df57cd3..4b1c4b52 100644 --- a/src/api/burn/WixToolset.BootstrapperApplicationApi/IBootstrapperEngine.cs +++ b/src/api/burn/WixToolset.BootstrapperApplicationApi/IBootstrapperEngine.cs @@ -345,23 +345,24 @@ namespace WixToolset.BootstrapperApplicationApi } /// - /// The scope of the bundle when the chain contains per-user-or-machine or per-machone-or-user packages. + /// The scope of the bundle when the chain contains dual-purpose (per-user-or-machine or per-machone-or-user) packages. /// public enum BundleScope { /// /// Let Burn choose the scope. Per-user-or-machine packages will be + /// planned as per-user packages. Per-machine-or-user packages will be /// planned as per-machine packages. /// Default, /// - /// Set per-machine scope for per-user-or-machine packages. + /// Set per-machine scope for dual-purpose packages. /// PerMachine, /// - /// Set per-user scope for per-user-or-machine packages. + /// Set per-user scope for dual-purpose packages. /// PerUser, } -- cgit v1.2.3-55-g6feb