diff options
-rw-r--r-- | src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs b/src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs index af129998..192e479b 100644 --- a/src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs +++ b/src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs | |||
@@ -406,12 +406,15 @@ namespace WixToolset.Core.Burn | |||
406 | ++uxPayloadIndex; | 406 | ++uxPayloadIndex; |
407 | } | 407 | } |
408 | 408 | ||
409 | #if TODO | 409 | foreach (var extension in this.BackendExtensions) |
410 | foreach (BinderExtension extension in this.Extensions) | ||
411 | { | 410 | { |
412 | extension.PostBind(this.Context); | 411 | extension.BundleFinalize(); |
412 | } | ||
413 | |||
414 | if (this.Messaging.EncounteredError) | ||
415 | { | ||
416 | return; | ||
413 | } | 417 | } |
414 | #endif | ||
415 | 418 | ||
416 | // Create all the containers except the UX container first so the manifest (that goes in the UX container) | 419 | // Create all the containers except the UX container first so the manifest (that goes in the UX container) |
417 | // can contain all size and hash information about the non-UX containers. | 420 | // can contain all size and hash information about the non-UX containers. |