diff options
author | Rob Mensching <rob@firegiant.com> | 2017-12-27 14:23:39 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2017-12-27 14:23:39 -0800 |
commit | 68075faa4a60e8016ea7653cfc1396cd00e3f646 (patch) | |
tree | 4656616a3f1030620594ee38a280e4dab8ab9e8e /src/WixToolset.Core.WindowsInstaller/Bind/CreateIdtFileCommand.cs | |
parent | 9813f0b4054ab0c003529699d1a467db90395980 (diff) | |
download | wix-68075faa4a60e8016ea7653cfc1396cd00e3f646.tar.gz wix-68075faa4a60e8016ea7653cfc1396cd00e3f646.tar.bz2 wix-68075faa4a60e8016ea7653cfc1396cd00e3f646.zip |
Integrate latest Data and Extensibility changes and build light.exe
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Bind/CreateIdtFileCommand.cs')
-rw-r--r-- | src/WixToolset.Core.WindowsInstaller/Bind/CreateIdtFileCommand.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/CreateIdtFileCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/CreateIdtFileCommand.cs index 9afb3260..6b1dead5 100644 --- a/src/WixToolset.Core.WindowsInstaller/Bind/CreateIdtFileCommand.cs +++ b/src/WixToolset.Core.WindowsInstaller/Bind/CreateIdtFileCommand.cs | |||
@@ -69,9 +69,9 @@ namespace WixToolset.Core.WindowsInstaller.Bind | |||
69 | return; | 69 | return; |
70 | } | 70 | } |
71 | 71 | ||
72 | if (TableDefinition.MaxColumnsInRealTable < table.Definition.Columns.Count) | 72 | if (TableDefinition.MaxColumnsInRealTable < table.Definition.Columns.Length) |
73 | { | 73 | { |
74 | throw new WixException(ErrorMessages.TooManyColumnsInRealTable(table.Definition.Name, table.Definition.Columns.Count, TableDefinition.MaxColumnsInRealTable)); | 74 | throw new WixException(ErrorMessages.TooManyColumnsInRealTable(table.Definition.Name, table.Definition.Columns.Length, TableDefinition.MaxColumnsInRealTable)); |
75 | } | 75 | } |
76 | 76 | ||
77 | // Tack on the table header, and flush before we start writing bytes directly to the stream. | 77 | // Tack on the table header, and flush before we start writing bytes directly to the stream. |