aboutsummaryrefslogtreecommitdiff
path: root/src/api
diff options
context:
space:
mode:
Diffstat (limited to 'src/api')
-rw-r--r--src/api/burn/WixToolset.Mba.Core/IBootstrapperEngine.cs11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/api/burn/WixToolset.Mba.Core/IBootstrapperEngine.cs b/src/api/burn/WixToolset.Mba.Core/IBootstrapperEngine.cs
index 25ce52df..3f90639f 100644
--- a/src/api/burn/WixToolset.Mba.Core/IBootstrapperEngine.cs
+++ b/src/api/burn/WixToolset.Mba.Core/IBootstrapperEngine.cs
@@ -408,11 +408,6 @@ namespace WixToolset.Mba.Core
408 Absent, 408 Absent,
409 409
410 /// <summary> 410 /// <summary>
411 /// The package is not installed but is in the package cache.
412 /// </summary>
413 Cached,
414
415 /// <summary>
416 /// The package is installed. 411 /// The package is installed.
417 /// </summary> 412 /// </summary>
418 Present, 413 Present,
@@ -421,6 +416,12 @@ namespace WixToolset.Mba.Core
421 /// The package is on the machine but not active, so only uninstall operations are allowed. 416 /// The package is on the machine but not active, so only uninstall operations are allowed.
422 /// </summary> 417 /// </summary>
423 Superseded, 418 Superseded,
419
420 /// <summary>
421 /// This value is no longer used. See the DetectPackageCompleteEventArgs.Cached value instead.
422 /// </summary>
423 [Obsolete("Use DetectPackageCompleteEventArgs.Cached instead.")]
424 Cached = Present,
424 } 425 }
425 426
426 /// <summary> 427 /// <summary>