aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Link/WixComplexReferenceSymbolExtensions.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core/Link/WixComplexReferenceSymbolExtensions.cs')
-rw-r--r--src/WixToolset.Core/Link/WixComplexReferenceSymbolExtensions.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/WixToolset.Core/Link/WixComplexReferenceSymbolExtensions.cs b/src/WixToolset.Core/Link/WixComplexReferenceSymbolExtensions.cs
index 1702d3ca..2b1925ad 100644
--- a/src/WixToolset.Core/Link/WixComplexReferenceSymbolExtensions.cs
+++ b/src/WixToolset.Core/Link/WixComplexReferenceSymbolExtensions.cs
@@ -1,4 +1,4 @@
1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. 1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2 2
3namespace WixToolset.Core.Link 3namespace WixToolset.Core.Link
4{ 4{
@@ -27,7 +27,8 @@ namespace WixToolset.Core.Link
27 /// <summary> 27 /// <summary>
28 /// Compares two complex references without considering the primary bit. 28 /// Compares two complex references without considering the primary bit.
29 /// </summary> 29 /// </summary>
30 /// <param name="obj">Complex reference to compare to.</param> 30 /// <param name="symbol">this</param>
31 /// <param name="other">Complex reference to compare to.</param>
31 /// <returns>Zero if the objects are equivalent, negative number if the provided object is less, positive if greater.</returns> 32 /// <returns>Zero if the objects are equivalent, negative number if the provided object is less, positive if greater.</returns>
32 public static int CompareToWithoutConsideringPrimary(this WixComplexReferenceSymbol symbol, WixComplexReferenceSymbol other) 33 public static int CompareToWithoutConsideringPrimary(this WixComplexReferenceSymbol symbol, WixComplexReferenceSymbol other)
33 { 34 {
@@ -57,6 +58,7 @@ namespace WixToolset.Core.Link
57 /// <summary> 58 /// <summary>
58 /// Changes all of the parent references to point to the passed in parent reference. 59 /// Changes all of the parent references to point to the passed in parent reference.
59 /// </summary> 60 /// </summary>
61 /// <param name="symbol">this</param>
60 /// <param name="parent">New parent complex reference.</param> 62 /// <param name="parent">New parent complex reference.</param>
61 public static void Reparent(this WixComplexReferenceSymbol symbol, WixComplexReferenceSymbol parent) 63 public static void Reparent(this WixComplexReferenceSymbol symbol, WixComplexReferenceSymbol parent)
62 { 64 {