aboutsummaryrefslogtreecommitdiff
path: root/src/api/burn/WixToolset.BootstrapperApplicationApi
diff options
context:
space:
mode:
Diffstat (limited to '')
-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 }