diff options
Diffstat (limited to 'src/WixToolset.Mba.Core/IDefaultBootstrapperApplication.cs')
| -rw-r--r-- | src/WixToolset.Mba.Core/IDefaultBootstrapperApplication.cs | 27 |
1 files changed, 16 insertions, 11 deletions
diff --git a/src/WixToolset.Mba.Core/IDefaultBootstrapperApplication.cs b/src/WixToolset.Mba.Core/IDefaultBootstrapperApplication.cs index 9970dc3e..d0518049 100644 --- a/src/WixToolset.Mba.Core/IDefaultBootstrapperApplication.cs +++ b/src/WixToolset.Mba.Core/IDefaultBootstrapperApplication.cs | |||
| @@ -115,6 +115,11 @@ namespace WixToolset.Mba.Core | |||
| 115 | event EventHandler<DetectPackageCompleteEventArgs> DetectPackageComplete; | 115 | event EventHandler<DetectPackageCompleteEventArgs> DetectPackageComplete; |
| 116 | 116 | ||
| 117 | /// <summary> | 117 | /// <summary> |
| 118 | /// Fired when the engine detects a target product for an MSP package. | ||
| 119 | /// </summary> | ||
| 120 | event EventHandler<DetectPatchTargetEventArgs> DetectPatchTarget; | ||
| 121 | |||
| 122 | /// <summary> | ||
| 118 | /// Fired when a related bundle has been detected for a bundle. | 123 | /// Fired when a related bundle has been detected for a bundle. |
| 119 | /// </summary> | 124 | /// </summary> |
| 120 | event EventHandler<DetectRelatedBundleEventArgs> DetectRelatedBundle; | 125 | event EventHandler<DetectRelatedBundleEventArgs> DetectRelatedBundle; |
| @@ -125,11 +130,6 @@ namespace WixToolset.Mba.Core | |||
| 125 | event EventHandler<DetectRelatedMsiPackageEventArgs> DetectRelatedMsiPackage; | 130 | event EventHandler<DetectRelatedMsiPackageEventArgs> DetectRelatedMsiPackage; |
| 126 | 131 | ||
| 127 | /// <summary> | 132 | /// <summary> |
| 128 | /// Fired when an MSP package detects a target MSI has been detected. | ||
| 129 | /// </summary> | ||
| 130 | event EventHandler<DetectTargetMsiPackageEventArgs> DetectTargetMsiPackage; | ||
| 131 | |||
| 132 | /// <summary> | ||
| 133 | /// Fired when the update detection has found a potential update candidate. | 133 | /// Fired when the update detection has found a potential update candidate. |
| 134 | /// </summary> | 134 | /// </summary> |
| 135 | event EventHandler<DetectUpdateEventArgs> DetectUpdate; | 135 | event EventHandler<DetectUpdateEventArgs> DetectUpdate; |
| @@ -230,6 +230,11 @@ namespace WixToolset.Mba.Core | |||
| 230 | event EventHandler<PlanCompleteEventArgs> PlanComplete; | 230 | event EventHandler<PlanCompleteEventArgs> PlanComplete; |
| 231 | 231 | ||
| 232 | /// <summary> | 232 | /// <summary> |
| 233 | /// Fired when the engine has completed planning a package. | ||
| 234 | /// </summary> | ||
| 235 | event EventHandler<PlannedPackageEventArgs> PlannedPackage; | ||
| 236 | |||
| 237 | /// <summary> | ||
| 233 | /// Fired when the engine is about to plan a feature in an MSI package. | 238 | /// Fired when the engine is about to plan a feature in an MSI package. |
| 234 | /// </summary> | 239 | /// </summary> |
| 235 | event EventHandler<PlanMsiFeatureEventArgs> PlanMsiFeature; | 240 | event EventHandler<PlanMsiFeatureEventArgs> PlanMsiFeature; |
| @@ -240,24 +245,24 @@ namespace WixToolset.Mba.Core | |||
| 240 | event EventHandler<PlanMsiPackageEventArgs> PlanMsiPackage; | 245 | event EventHandler<PlanMsiPackageEventArgs> PlanMsiPackage; |
| 241 | 246 | ||
| 242 | /// <summary> | 247 | /// <summary> |
| 243 | /// Fired when the engine has begun planning the installation of a specific package. | 248 | /// Fired when the engine has begun getting the BA's input for planning a package. |
| 244 | /// </summary> | 249 | /// </summary> |
| 245 | event EventHandler<PlanPackageBeginEventArgs> PlanPackageBegin; | 250 | event EventHandler<PlanPackageBeginEventArgs> PlanPackageBegin; |
| 246 | 251 | ||
| 247 | /// <summary> | 252 | /// <summary> |
| 248 | /// Fired when the engine has completed planning the installation of a specific package. | 253 | /// Fired when the engine has completed getting the BA's input for planning a package. |
| 249 | /// </summary> | 254 | /// </summary> |
| 250 | event EventHandler<PlanPackageCompleteEventArgs> PlanPackageComplete; | 255 | event EventHandler<PlanPackageCompleteEventArgs> PlanPackageComplete; |
| 251 | 256 | ||
| 252 | /// <summary> | 257 | /// <summary> |
| 253 | /// Fired when the engine has begun planning for a related bundle. | 258 | /// Fired when the engine is about to plan a target of an MSP package. |
| 254 | /// </summary> | 259 | /// </summary> |
| 255 | event EventHandler<PlanRelatedBundleEventArgs> PlanRelatedBundle; | 260 | event EventHandler<PlanPatchTargetEventArgs> PlanPatchTarget; |
| 256 | 261 | ||
| 257 | /// <summary> | 262 | /// <summary> |
| 258 | /// Fired when the engine is about to plan the target MSI of a MSP package. | 263 | /// Fired when the engine has begun planning for a related bundle. |
| 259 | /// </summary> | 264 | /// </summary> |
| 260 | event EventHandler<PlanTargetMsiPackageEventArgs> PlanTargetMsiPackage; | 265 | event EventHandler<PlanRelatedBundleEventArgs> PlanRelatedBundle; |
| 261 | 266 | ||
| 262 | /// <summary> | 267 | /// <summary> |
| 263 | /// Fired when the engine has changed progress for the bundle installation. | 268 | /// Fired when the engine has changed progress for the bundle installation. |
