diff options
| author | Rob Mensching <rob@firegiant.com> | 2021-03-16 10:49:09 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2021-03-16 11:07:44 -0700 |
| commit | 60f75abcd1fe49052c118a2597ac59a82c372b64 (patch) | |
| tree | 1fd88e6c67846b97e61dbc3bf6f5f440516829a2 /src/WixToolset.Core.WindowsInstaller/Unbind/UnbindDatabaseCommand.cs | |
| parent | 1c23520ed490b56e292dc1544463af83807745ad (diff) | |
| download | wix-60f75abcd1fe49052c118a2597ac59a82c372b64.tar.gz wix-60f75abcd1fe49052c118a2597ac59a82c372b64.tar.bz2 wix-60f75abcd1fe49052c118a2597ac59a82c372b64.zip | |
Migrate PInvoke out of Core to Core.Native
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Unbind/UnbindDatabaseCommand.cs')
| -rw-r--r-- | src/WixToolset.Core.WindowsInstaller/Unbind/UnbindDatabaseCommand.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Unbind/UnbindDatabaseCommand.cs b/src/WixToolset.Core.WindowsInstaller/Unbind/UnbindDatabaseCommand.cs index 9a55dc77..b510690e 100644 --- a/src/WixToolset.Core.WindowsInstaller/Unbind/UnbindDatabaseCommand.cs +++ b/src/WixToolset.Core.WindowsInstaller/Unbind/UnbindDatabaseCommand.cs | |||
| @@ -8,7 +8,7 @@ namespace WixToolset.Core.WindowsInstaller.Unbind | |||
| 8 | using System.Globalization; | 8 | using System.Globalization; |
| 9 | using System.IO; | 9 | using System.IO; |
| 10 | using System.Text.RegularExpressions; | 10 | using System.Text.RegularExpressions; |
| 11 | using WixToolset.Core.WindowsInstaller.Msi; | 11 | using WixToolset.Core.Native.Msi; |
| 12 | using WixToolset.Data; | 12 | using WixToolset.Data; |
| 13 | using WixToolset.Data.WindowsInstaller; | 13 | using WixToolset.Data.WindowsInstaller; |
| 14 | using WixToolset.Extensibility.Services; | 14 | using WixToolset.Extensibility.Services; |
| @@ -288,8 +288,8 @@ namespace WixToolset.Core.WindowsInstaller.Unbind | |||
| 288 | } | 288 | } |
| 289 | 289 | ||
| 290 | ColumnDefinition[] columns; | 290 | ColumnDefinition[] columns; |
| 291 | using (Record columnNameRecord = tableView.GetColumnInfo(MsiInterop.MSICOLINFONAMES), | 291 | using (Record columnNameRecord = tableView.GetColumnNames(), |
| 292 | columnTypeRecord = tableView.GetColumnInfo(MsiInterop.MSICOLINFOTYPES)) | 292 | columnTypeRecord = tableView.GetColumnTypes()) |
| 293 | { | 293 | { |
| 294 | // index the primary keys | 294 | // index the primary keys |
| 295 | var tablePrimaryKeys = new HashSet<string>(); | 295 | var tablePrimaryKeys = new HashSet<string>(); |
