diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-03-30 19:25:36 +1000 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-03-30 21:47:13 +1000 |
commit | d5b89ecb2ba931cd5429e00a78b9457f8a63c6d2 (patch) | |
tree | 8e63d6e71579a143e10a8715d3b73089bb71855a /src/wixext | |
parent | 16f6a68d0bb1a0d5892a8cef10b835acc4e2a317 (diff) | |
download | wix-d5b89ecb2ba931cd5429e00a78b9457f8a63c6d2.tar.gz wix-d5b89ecb2ba931cd5429e00a78b9457f8a63c6d2.tar.bz2 wix-d5b89ecb2ba931cd5429e00a78b9457f8a63c6d2.zip |
Upgrade to latest dependencies.
Stop skipping CanBuildUsingWixStdBa.
Fix memory leak in wixstdba.
Diffstat (limited to 'src/wixext')
-rw-r--r-- | src/wixext/BalWindowsInstallerBackendBinderExtension.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wixext/BalWindowsInstallerBackendBinderExtension.cs b/src/wixext/BalWindowsInstallerBackendBinderExtension.cs index e53087b7..3c116329 100644 --- a/src/wixext/BalWindowsInstallerBackendBinderExtension.cs +++ b/src/wixext/BalWindowsInstallerBackendBinderExtension.cs | |||
@@ -29,11 +29,11 @@ namespace WixToolset.Bal | |||
29 | } | 29 | } |
30 | } | 30 | } |
31 | 31 | ||
32 | public override void PostBackendBind(IBindResult result, WixOutput wixout) | 32 | public override void PostBackendBind(IBindResult result) |
33 | { | 33 | { |
34 | base.PostBackendBind(result, wixout); | 34 | base.PostBackendBind(result); |
35 | 35 | ||
36 | var output = WindowsInstallerData.Load(wixout.Uri.AbsoluteUri, false); | 36 | var output = WindowsInstallerData.Load(result.Wixout, false); |
37 | 37 | ||
38 | // Only process Bundles. | 38 | // Only process Bundles. |
39 | if (OutputType.Bundle != output.Type) | 39 | if (OutputType.Bundle != output.Type) |