diff options
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Unbind/UnbindDatabaseCommand.cs')
| -rw-r--r-- | src/WixToolset.Core.WindowsInstaller/Unbind/UnbindDatabaseCommand.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Unbind/UnbindDatabaseCommand.cs b/src/WixToolset.Core.WindowsInstaller/Unbind/UnbindDatabaseCommand.cs index 0699199b..2a26be8c 100644 --- a/src/WixToolset.Core.WindowsInstaller/Unbind/UnbindDatabaseCommand.cs +++ b/src/WixToolset.Core.WindowsInstaller/Unbind/UnbindDatabaseCommand.cs | |||
| @@ -57,12 +57,12 @@ namespace WixToolset.Core.WindowsInstaller.Unbind | |||
| 57 | 57 | ||
| 58 | private int SectionCount { get; set; } | 58 | private int SectionCount { get; set; } |
| 59 | 59 | ||
| 60 | public Output Execute() | 60 | public WindowsInstallerData Execute() |
| 61 | { | 61 | { |
| 62 | this.exportedFiles = new List<string>(); | 62 | this.exportedFiles = new List<string>(); |
| 63 | 63 | ||
| 64 | string modularizationGuid = null; | 64 | string modularizationGuid = null; |
| 65 | var output = new Output(new SourceLineNumber(this.DatabasePath)); | 65 | var output = new WindowsInstallerData(new SourceLineNumber(this.DatabasePath)); |
| 66 | View validationView = null; | 66 | View validationView = null; |
| 67 | 67 | ||
| 68 | // set the output type | 68 | // set the output type |
| @@ -442,7 +442,7 @@ namespace WixToolset.Core.WindowsInstaller.Unbind | |||
| 442 | /// </summary> | 442 | /// </summary> |
| 443 | /// <param name="databaseFile">The path to the msi database file in an admin image.</param> | 443 | /// <param name="databaseFile">The path to the msi database file in an admin image.</param> |
| 444 | /// <param name="output">The Output that represents the msi database.</param> | 444 | /// <param name="output">The Output that represents the msi database.</param> |
| 445 | private void GenerateWixFileTable(string databaseFile, Output output) | 445 | private void GenerateWixFileTable(string databaseFile, WindowsInstallerData output) |
| 446 | { | 446 | { |
| 447 | throw new NotImplementedException(); | 447 | throw new NotImplementedException(); |
| 448 | #if TODO_FIX_UNBINDING_FILES | 448 | #if TODO_FIX_UNBINDING_FILES |
| @@ -605,7 +605,7 @@ namespace WixToolset.Core.WindowsInstaller.Unbind | |||
| 605 | /// Creates section ids on rows which form logical groupings of resources. | 605 | /// Creates section ids on rows which form logical groupings of resources. |
| 606 | /// </summary> | 606 | /// </summary> |
| 607 | /// <param name="output">The Output that represents the msi database.</param> | 607 | /// <param name="output">The Output that represents the msi database.</param> |
| 608 | private void GenerateSectionIds(Output output) | 608 | private void GenerateSectionIds(WindowsInstallerData output) |
| 609 | { | 609 | { |
| 610 | // First assign and index section ids for the tables that are in their own sections. | 610 | // First assign and index section ids for the tables that are in their own sections. |
| 611 | this.AssignSectionIdsToTable(output.Tables["Binary"], 0); | 611 | this.AssignSectionIdsToTable(output.Tables["Binary"], 0); |
