diff options
| author | Rob Mensching <rob@firegiant.com> | 2019-10-07 13:21:29 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2019-10-07 21:44:46 -0700 |
| commit | d3b12de2f22eb552e073f0c949833a7ef4d4f13c (patch) | |
| tree | 87e6148d06a07ea57ba20f4fa2f245a4f5a5546c /src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs | |
| parent | 860676fa5b40a1904478151e9b4934c004e7db63 (diff) | |
| download | wix-d3b12de2f22eb552e073f0c949833a7ef4d4f13c.tar.gz wix-d3b12de2f22eb552e073f0c949833a7ef4d4f13c.tar.bz2 wix-d3b12de2f22eb552e073f0c949833a7ef4d4f13c.zip | |
Fix AppSearch related building
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs')
| -rw-r--r-- | src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs index cd3a67fa..170b138d 100644 --- a/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs +++ b/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs | |||
| @@ -152,6 +152,10 @@ namespace WixToolset.Core.WindowsInstaller.Bind | |||
| 152 | case TupleDefinitionType.Shortcut: | 152 | case TupleDefinitionType.Shortcut: |
| 153 | this.AddShortcutTuple((ShortcutTuple)tuple, output); | 153 | this.AddShortcutTuple((ShortcutTuple)tuple, output); |
| 154 | break; | 154 | break; |
| 155 | |||
| 156 | case TupleDefinitionType.Signature: | ||
| 157 | this.AddTupleDefaultly(tuple, output, true); | ||
| 158 | break; | ||
| 155 | 159 | ||
| 156 | case TupleDefinitionType.SummaryInformation: | 160 | case TupleDefinitionType.SummaryInformation: |
| 157 | this.AddTupleDefaultly(tuple, output, tableName: "_SummaryInformation"); | 161 | this.AddTupleDefaultly(tuple, output, tableName: "_SummaryInformation"); |
| @@ -917,7 +921,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind | |||
| 917 | { | 921 | { |
| 918 | if (i < tableDefinition.Columns.Length) | 922 | if (i < tableDefinition.Columns.Length) |
| 919 | { | 923 | { |
| 920 | var column = tableDefinition.Columns[i]; | 924 | var column = tableDefinition.Columns[i + rowOffset]; |
| 921 | 925 | ||
| 922 | switch (column.Type) | 926 | switch (column.Type) |
| 923 | { | 927 | { |
