aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller/Unbind/UnbindDatabaseCommand.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-10-26 13:40:49 -0700
committerRob Mensching <rob@firegiant.com>2019-10-26 13:56:11 -0700
commit6eab6255f832007886c4b01861dc39d5582177ef (patch)
treecb3e11ad38046ed74eede94126c9923e4dfc287b /src/WixToolset.Core.WindowsInstaller/Unbind/UnbindDatabaseCommand.cs
parentf01d284101e95d490497062c2dc9065423d0cf37 (diff)
downloadwix-6eab6255f832007886c4b01861dc39d5582177ef.tar.gz
wix-6eab6255f832007886c4b01861dc39d5582177ef.tar.bz2
wix-6eab6255f832007886c4b01861dc39d5582177ef.zip
Update to WindowsInstallerData rename from Data
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Unbind/UnbindDatabaseCommand.cs')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Unbind/UnbindDatabaseCommand.cs8
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);