aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller/Unbind
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-05-23 15:37:56 -0700
committerRob Mensching <rob@firegiant.com>2019-05-23 16:02:37 -0700
commit354f6d5b79404544cb7c0e11a0d9212b4780ce09 (patch)
tree1082ce6dd66604f7da315d6a15c85ac3f56b745a /src/WixToolset.Core.WindowsInstaller/Unbind
parent3051bf2fc300df125115c9538a0bfc8256bfde6a (diff)
downloadwix-354f6d5b79404544cb7c0e11a0d9212b4780ce09.tar.gz
wix-354f6d5b79404544cb7c0e11a0d9212b4780ce09.tar.bz2
wix-354f6d5b79404544cb7c0e11a0d9212b4780ce09.zip
Integrate latest Data changes for FileTuple and AssemblyTuple
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Unbind')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Unbind/UnbindDatabaseCommand.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Unbind/UnbindDatabaseCommand.cs b/src/WixToolset.Core.WindowsInstaller/Unbind/UnbindDatabaseCommand.cs
index 4c24ff7e..e671f6a1 100644
--- a/src/WixToolset.Core.WindowsInstaller/Unbind/UnbindDatabaseCommand.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Unbind/UnbindDatabaseCommand.cs
@@ -444,6 +444,8 @@ namespace WixToolset.Core.WindowsInstaller.Unbind
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, Output output)
446 { 446 {
447 throw new NotImplementedException();
448#if TODO_FIX_UNBINDING_FILES
447 var adminRootPath = Path.GetDirectoryName(databaseFile); 449 var adminRootPath = Path.GetDirectoryName(databaseFile);
448 450
449 var componentDirectoryIndex = new Hashtable(); 451 var componentDirectoryIndex = new Hashtable();
@@ -495,6 +497,7 @@ namespace WixToolset.Core.WindowsInstaller.Unbind
495 497
496 wixFileTable.Rows.Add(wixFileRow); 498 wixFileTable.Rows.Add(wixFileRow);
497 } 499 }
500#endif
498 } 501 }
499 502
500 /// <summary> 503 /// <summary>