diff options
author | Rob Mensching <rob@firegiant.com> | 2017-11-01 10:59:45 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2017-11-01 10:59:45 -0700 |
commit | 2bb37beda887d120a0ddabf874ad25357101faa1 (patch) | |
tree | c35e97b03274b86cfc9ff7fd2caeee211165a140 /src/WixToolset.Core.WindowsInstaller/Unbind | |
parent | df7413aeed3aea3425dff20ae0c8b1be3a3ab525 (diff) | |
download | wix-2bb37beda887d120a0ddabf874ad25357101faa1.tar.gz wix-2bb37beda887d120a0ddabf874ad25357101faa1.tar.bz2 wix-2bb37beda887d120a0ddabf874ad25357101faa1.zip |
Update to WiX Intermediate Representation
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Unbind')
-rw-r--r-- | src/WixToolset.Core.WindowsInstaller/Unbind/UnbindDatabaseCommand.cs | 4 | ||||
-rw-r--r-- | src/WixToolset.Core.WindowsInstaller/Unbind/UnbindMsiOrMsmCommand.cs | 5 |
2 files changed, 6 insertions, 3 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Unbind/UnbindDatabaseCommand.cs b/src/WixToolset.Core.WindowsInstaller/Unbind/UnbindDatabaseCommand.cs index 208be874..15445bc8 100644 --- a/src/WixToolset.Core.WindowsInstaller/Unbind/UnbindDatabaseCommand.cs +++ b/src/WixToolset.Core.WindowsInstaller/Unbind/UnbindDatabaseCommand.cs | |||
@@ -83,7 +83,7 @@ namespace WixToolset.Core.WindowsInstaller.Unbind | |||
83 | { | 83 | { |
84 | using (SummaryInformation summaryInformation = new SummaryInformation(this.Database)) | 84 | using (SummaryInformation summaryInformation = new SummaryInformation(this.Database)) |
85 | { | 85 | { |
86 | Table table = new Table(null, this.TableDefinitions["_SummaryInformation"]); | 86 | Table table = new Table(this.TableDefinitions["_SummaryInformation"]); |
87 | 87 | ||
88 | for (int i = 1; 19 >= i; i++) | 88 | for (int i = 1; 19 >= i; i++) |
89 | { | 89 | { |
@@ -277,7 +277,7 @@ namespace WixToolset.Core.WindowsInstaller.Unbind | |||
277 | tableDefinition = this.TableDefinitions[tableName]; | 277 | tableDefinition = this.TableDefinitions[tableName]; |
278 | } | 278 | } |
279 | 279 | ||
280 | Table table = new Table(null, tableDefinition); | 280 | Table table = new Table(tableDefinition); |
281 | 281 | ||
282 | while (true) | 282 | while (true) |
283 | { | 283 | { |
diff --git a/src/WixToolset.Core.WindowsInstaller/Unbind/UnbindMsiOrMsmCommand.cs b/src/WixToolset.Core.WindowsInstaller/Unbind/UnbindMsiOrMsmCommand.cs index f04dcefe..ce3f1ff6 100644 --- a/src/WixToolset.Core.WindowsInstaller/Unbind/UnbindMsiOrMsmCommand.cs +++ b/src/WixToolset.Core.WindowsInstaller/Unbind/UnbindMsiOrMsmCommand.cs | |||
@@ -18,8 +18,9 @@ namespace WixToolset.Core.WindowsInstaller.Unbind | |||
18 | 18 | ||
19 | public IUnbindContext Context { get; } | 19 | public IUnbindContext Context { get; } |
20 | 20 | ||
21 | public Output Execute() | 21 | public Intermediate Execute() |
22 | { | 22 | { |
23 | #if REVISIT_FOR_PATCHING | ||
23 | Output output; | 24 | Output output; |
24 | 25 | ||
25 | try | 26 | try |
@@ -48,6 +49,8 @@ namespace WixToolset.Core.WindowsInstaller.Unbind | |||
48 | } | 49 | } |
49 | 50 | ||
50 | return output; | 51 | return output; |
52 | #endif | ||
53 | throw new NotImplementedException(); | ||
51 | } | 54 | } |
52 | } | 55 | } |
53 | } | 56 | } |