From 6eab6255f832007886c4b01861dc39d5582177ef Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Sat, 26 Oct 2019 13:40:49 -0700 Subject: Update to WindowsInstallerData rename from Data --- .../Unbind/UnbindDatabaseCommand.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/WixToolset.Core.WindowsInstaller/Unbind/UnbindDatabaseCommand.cs') 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 private int SectionCount { get; set; } - public Output Execute() + public WindowsInstallerData Execute() { this.exportedFiles = new List(); string modularizationGuid = null; - var output = new Output(new SourceLineNumber(this.DatabasePath)); + var output = new WindowsInstallerData(new SourceLineNumber(this.DatabasePath)); View validationView = null; // set the output type @@ -442,7 +442,7 @@ namespace WixToolset.Core.WindowsInstaller.Unbind /// /// The path to the msi database file in an admin image. /// The Output that represents the msi database. - private void GenerateWixFileTable(string databaseFile, Output output) + private void GenerateWixFileTable(string databaseFile, WindowsInstallerData output) { throw new NotImplementedException(); #if TODO_FIX_UNBINDING_FILES @@ -605,7 +605,7 @@ namespace WixToolset.Core.WindowsInstaller.Unbind /// Creates section ids on rows which form logical groupings of resources. /// /// The Output that represents the msi database. - private void GenerateSectionIds(Output output) + private void GenerateSectionIds(WindowsInstallerData output) { // First assign and index section ids for the tables that are in their own sections. this.AssignSectionIdsToTable(output.Tables["Binary"], 0); -- cgit v1.2.3-55-g6feb