diff options
| author | Bob Arnson <bob@firegiant.com> | 2020-03-04 19:02:47 -0500 |
|---|---|---|
| committer | Bob Arnson <bob@firegiant.com> | 2020-03-04 19:07:36 -0500 |
| commit | a062d5f5befac64b3aaa3b277fd4501c640551bb (patch) | |
| tree | f89431ec46da649bd6b663bdc34534e8fe1aeda5 /src | |
| parent | 4fcfe83e12dbbedb497ee7eaf15491dde6c08a6a (diff) | |
| download | wix-a062d5f5befac64b3aaa3b277fd4501c640551bb.tar.gz wix-a062d5f5befac64b3aaa3b277fd4501c640551bb.tar.bz2 wix-a062d5f5befac64b3aaa3b277fd4501c640551bb.zip | |
Use TableDefinition.TupleDefinitionName find matching tuple.
Diffstat (limited to 'src')
| -rw-r--r-- | src/WixToolset.Core/ExtensibilityServices/WindowsInstallerBackendHelper.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core/ExtensibilityServices/WindowsInstallerBackendHelper.cs b/src/WixToolset.Core/ExtensibilityServices/WindowsInstallerBackendHelper.cs index 4887d995..34efe8e3 100644 --- a/src/WixToolset.Core/ExtensibilityServices/WindowsInstallerBackendHelper.cs +++ b/src/WixToolset.Core/ExtensibilityServices/WindowsInstallerBackendHelper.cs | |||
| @@ -14,7 +14,7 @@ namespace WixToolset.Core.ExtensibilityServices | |||
| 14 | 14 | ||
| 15 | public bool TryAddTupleToOutputMatchingTableDefinitions(IntermediateTuple tuple, WindowsInstallerData output, IEnumerable<TableDefinition> tableDefinitions, bool columnZeroIsId) | 15 | public bool TryAddTupleToOutputMatchingTableDefinitions(IntermediateTuple tuple, WindowsInstallerData output, IEnumerable<TableDefinition> tableDefinitions, bool columnZeroIsId) |
| 16 | { | 16 | { |
| 17 | var tableDefinition = tableDefinitions.FirstOrDefault(t => t.Name == tuple.Definition.Name); | 17 | var tableDefinition = tableDefinitions.FirstOrDefault(t => t.TupleDefinitionName == tuple.Definition.Name); |
| 18 | 18 | ||
| 19 | if (tableDefinition == null) | 19 | if (tableDefinition == null) |
| 20 | { | 20 | { |
