diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2020-04-13 13:36:49 +1000 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2020-04-13 20:32:16 +1000 |
| commit | 0a596a3cd67e5e7749cb529b3eb1ee2ea38901b3 (patch) | |
| tree | fc766a6eab7926d82a6069d230db39483c62f425 /src/WixToolset.Core | |
| parent | d7650a48368f15468d721f4d0729bbf60c7c1666 (diff) | |
| download | wix-0a596a3cd67e5e7749cb529b3eb1ee2ea38901b3.tar.gz wix-0a596a3cd67e5e7749cb529b3eb1ee2ea38901b3.tar.bz2 wix-0a596a3cd67e5e7749cb529b3eb1ee2ea38901b3.zip | |
Fix changes to TableDefinition.
Diffstat (limited to 'src/WixToolset.Core')
| -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 753b8b34..a923a8cc 100644 --- a/src/WixToolset.Core/ExtensibilityServices/WindowsInstallerBackendHelper.cs +++ b/src/WixToolset.Core/ExtensibilityServices/WindowsInstallerBackendHelper.cs | |||
| @@ -21,7 +21,7 @@ namespace WixToolset.Core.ExtensibilityServices | |||
| 21 | 21 | ||
| 22 | public bool TryAddTupleToOutputMatchingTableDefinitions(IntermediateSection section, IntermediateTuple tuple, WindowsInstallerData output, TableDefinitionCollection tableDefinitions) | 22 | public bool TryAddTupleToOutputMatchingTableDefinitions(IntermediateSection section, IntermediateTuple tuple, WindowsInstallerData output, TableDefinitionCollection tableDefinitions) |
| 23 | { | 23 | { |
| 24 | var tableDefinition = tableDefinitions.FirstOrDefault(t => t.TupleDefinitionName == tuple.Definition.Name); | 24 | var tableDefinition = tableDefinitions.FirstOrDefault(t => t.TupleDefinition?.Name == tuple.Definition.Name); |
| 25 | if (tableDefinition == null) | 25 | if (tableDefinition == null) |
| 26 | { | 26 | { |
| 27 | return false; | 27 | return false; |
