diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-04-23 08:32:11 +1000 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-04-23 12:39:32 +1000 |
commit | 961ccec685eb5dd34202b8edbf7f4e67910998aa (patch) | |
tree | 9c65f0b9f7ddcf2b0b432b33712742cda327e2d6 /src | |
parent | 190135bbe8e941dee1d60d10b03e11a91574c11f (diff) | |
download | wix-961ccec685eb5dd34202b8edbf7f4e67910998aa.tar.gz wix-961ccec685eb5dd34202b8edbf7f4e67910998aa.tar.bz2 wix-961ccec685eb5dd34202b8edbf7f4e67910998aa.zip |
Add BundleFinalize to IBurnBackendExtension.
Diffstat (limited to 'src')
-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. |