diff options
Diffstat (limited to 'src/WixToolset.Core/Link/WixGroupingOrdering.cs')
-rw-r--r-- | src/WixToolset.Core/Link/WixGroupingOrdering.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Core/Link/WixGroupingOrdering.cs b/src/WixToolset.Core/Link/WixGroupingOrdering.cs index c40af502..9080775e 100644 --- a/src/WixToolset.Core/Link/WixGroupingOrdering.cs +++ b/src/WixToolset.Core/Link/WixGroupingOrdering.cs | |||
@@ -361,9 +361,9 @@ namespace WixToolset.Core.Link | |||
361 | foreach (var row in this.EntrySection.Tuples.OfType<WixOrderingTuple>()) | 361 | foreach (var row in this.EntrySection.Tuples.OfType<WixOrderingTuple>()) |
362 | { | 362 | { |
363 | var rowItemType = row.ItemType.ToString(); | 363 | var rowItemType = row.ItemType.ToString(); |
364 | var rowItemName = row.ItemId_; | 364 | var rowItemName = row.ItemIdRef; |
365 | var rowDependsOnType = row.DependsOnType.ToString(); | 365 | var rowDependsOnType = row.DependsOnType.ToString(); |
366 | var rowDependsOnName = row.DependsOnId_; | 366 | var rowDependsOnName = row.DependsOnIdRef; |
367 | 367 | ||
368 | // If this row specifies some other (unknown) type in either | 368 | // If this row specifies some other (unknown) type in either |
369 | // position, we assume it's not a row that we're concerned about. | 369 | // position, we assume it's not a row that we're concerned about. |