aboutsummaryrefslogtreecommitdiff
path: root/src/api
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2026-02-17 19:41:03 -0500
committerBob Arnson <bob@firegiant.com>2026-02-17 19:48:12 -0500
commit5658492062bf28ffb670ede15cbd1413bf1182d8 (patch)
tree7e959881fdabed13359ff8cb78e68d9c74b81931 /src/api
parentde80ff1102a1b34e430bbc718fe65a42bab196cf (diff)
downloadwix-bob/BundleLockUpgradeScope.tar.gz
wix-bob/BundleLockUpgradeScope.tar.bz2
wix-bob/BundleLockUpgradeScope.zip
Lock upgrade bundles to original bundle's scope.bob/BundleLockUpgradeScope
Fixes https://github.com/wixtoolset/issues/issues/9236
Diffstat (limited to 'src/api')
-rw-r--r--src/api/burn/WixToolset.BootstrapperApplicationApi/IBootstrapperEngine.cs7
1 files changed, 4 insertions, 3 deletions
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
345 } 345 }
346 346
347 /// <summary> 347 /// <summary>
348 /// The scope of the bundle when the chain contains per-user-or-machine or per-machone-or-user packages. 348 /// The scope of the bundle when the chain contains dual-purpose (per-user-or-machine or per-machone-or-user) packages.
349 /// </summary> 349 /// </summary>
350 public enum BundleScope 350 public enum BundleScope
351 { 351 {
352 /// <summary> 352 /// <summary>
353 /// Let Burn choose the scope. Per-user-or-machine packages will be 353 /// Let Burn choose the scope. Per-user-or-machine packages will be
354 /// planned as per-user packages. Per-machine-or-user packages will be
354 /// planned as per-machine packages. 355 /// planned as per-machine packages.
355 /// </summary> 356 /// </summary>
356 Default, 357 Default,
357 358
358 /// <summary> 359 /// <summary>
359 /// Set per-machine scope for per-user-or-machine packages. 360 /// Set per-machine scope for dual-purpose packages.
360 /// </summary> 361 /// </summary>
361 PerMachine, 362 PerMachine,
362 363
363 /// <summary> 364 /// <summary>
364 /// Set per-user scope for per-user-or-machine packages. 365 /// Set per-user scope for dual-purpose packages.
365 /// </summary> 366 /// </summary>
366 PerUser, 367 PerUser,
367 } 368 }