diff options
-rw-r--r-- | src/WixToolset.Core.WindowsInstaller/Bind/AttachPatchTransformsCommand.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/AttachPatchTransformsCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/AttachPatchTransformsCommand.cs index 51f1f81a..2249faf8 100644 --- a/src/WixToolset.Core.WindowsInstaller/Bind/AttachPatchTransformsCommand.cs +++ b/src/WixToolset.Core.WindowsInstaller/Bind/AttachPatchTransformsCommand.cs | |||
@@ -687,7 +687,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind | |||
687 | keptRows += ReduceTransformSequenceTable(sequenceList, oldSections, newSections, customActionTable); | 687 | keptRows += ReduceTransformSequenceTable(sequenceList, oldSections, newSections, customActionTable); |
688 | 688 | ||
689 | // Delete tables that are empty. | 689 | // Delete tables that are empty. |
690 | var tablesToDelete = transform.Tables.Where(t => t.Rows.Count == 0).Select(t => t.Name); | 690 | var tablesToDelete = transform.Tables.Where(t => t.Rows.Count == 0).Select(t => t.Name).ToList(); |
691 | 691 | ||
692 | foreach (var tableName in tablesToDelete) | 692 | foreach (var tableName in tablesToDelete) |
693 | { | 693 | { |