diff options
Diffstat (limited to 'src/WixToolset.Core/Linker.cs')
-rw-r--r-- | src/WixToolset.Core/Linker.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/WixToolset.Core/Linker.cs b/src/WixToolset.Core/Linker.cs index fa4c97b0..31b2ef8a 100644 --- a/src/WixToolset.Core/Linker.cs +++ b/src/WixToolset.Core/Linker.cs | |||
@@ -464,8 +464,8 @@ namespace WixToolset.Core | |||
464 | foreach (var feature in connectToFeature.ConnectFeatures) | 464 | foreach (var feature in connectToFeature.ConnectFeatures) |
465 | { | 465 | { |
466 | var row = new WixFeatureModulesTuple(); | 466 | var row = new WixFeatureModulesTuple(); |
467 | row.Feature_ = feature; | 467 | row.FeatureRef = feature; |
468 | row.WixMerge_ = connectToFeature.ChildId; | 468 | row.WixMergeRef = connectToFeature.ChildId; |
469 | 469 | ||
470 | resolvedSection.Tuples.Add(row); | 470 | resolvedSection.Tuples.Add(row); |
471 | } | 471 | } |
@@ -1182,8 +1182,8 @@ namespace WixToolset.Core | |||
1182 | 1182 | ||
1183 | // add a row to the FeatureComponents table | 1183 | // add a row to the FeatureComponents table |
1184 | var featureComponent = new FeatureComponentsTuple(); | 1184 | var featureComponent = new FeatureComponentsTuple(); |
1185 | featureComponent.Feature_ = wixComplexReferenceRow.Parent; | 1185 | featureComponent.FeatureRef = wixComplexReferenceRow.Parent; |
1186 | featureComponent.Component_ = wixComplexReferenceRow.Child; | 1186 | featureComponent.ComponentRef = wixComplexReferenceRow.Child; |
1187 | 1187 | ||
1188 | featureComponents.Add(featureComponent); | 1188 | featureComponents.Add(featureComponent); |
1189 | 1189 | ||