diff options
author | Bob Arnson <bob@firegiant.com> | 2020-02-13 21:44:26 -0500 |
---|---|---|
committer | Bob Arnson <bob@firegiant.com> | 2020-02-13 21:48:15 -0500 |
commit | c3a73e59713e19101a4998c46964759a686e552f (patch) | |
tree | 939a69495c28b7baa54b87379a9de9877878a088 | |
parent | 3070a821cc0522f462f8f878c48380460a4b770d (diff) | |
download | wix-c3a73e59713e19101a4998c46964759a686e552f.tar.gz wix-c3a73e59713e19101a4998c46964759a686e552f.tar.bz2 wix-c3a73e59713e19101a4998c46964759a686e552f.zip |
Support reopening WixOutputs, to be able to read after creation.
-rw-r--r-- | src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs index a90517da..167e0bb0 100644 --- a/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs +++ b/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs | |||
@@ -600,6 +600,8 @@ namespace WixToolset.Core.WindowsInstaller.Bind | |||
600 | 600 | ||
601 | output.Save(wixout); | 601 | output.Save(wixout); |
602 | 602 | ||
603 | wixout.Reopen(System.IO.Compression.ZipArchiveMode.Read); | ||
604 | |||
603 | return wixout; | 605 | return wixout; |
604 | } | 606 | } |
605 | 607 | ||