aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Link
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2020-12-18 22:04:48 -0600
committerSean Hall <r.sean.hall@gmail.com>2020-12-18 23:58:30 -0600
commit0e71bdd637a6b3c34f18d4b3630d55fa4cdfd2a3 (patch)
tree697466ea42c21f6d996cf324eb191f2182300697 /src/WixToolset.Core/Link
parent4e9b8c43ec5870d6aee75a95acd8a0de4ff4c1db (diff)
downloadwix-0e71bdd637a6b3c34f18d4b3630d55fa4cdfd2a3.tar.gz
wix-0e71bdd637a6b3c34f18d4b3630d55fa4cdfd2a3.tar.bz2
wix-0e71bdd637a6b3c34f18d4b3630d55fa4cdfd2a3.zip
Enable XML doc.
Diffstat (limited to 'src/WixToolset.Core/Link')
-rw-r--r--src/WixToolset.Core/Link/SymbolWithSection.cs1
-rw-r--r--src/WixToolset.Core/Link/WixComplexReferenceSymbolExtensions.cs6
-rw-r--r--src/WixToolset.Core/Link/WixGroupingOrdering.cs6
3 files changed, 7 insertions, 6 deletions
diff --git a/src/WixToolset.Core/Link/SymbolWithSection.cs b/src/WixToolset.Core/Link/SymbolWithSection.cs
index c8934d0f..08e01077 100644
--- a/src/WixToolset.Core/Link/SymbolWithSection.cs
+++ b/src/WixToolset.Core/Link/SymbolWithSection.cs
@@ -18,6 +18,7 @@ namespace WixToolset.Core.Link
18 /// <summary> 18 /// <summary>
19 /// Creates a symbol for a symbol. 19 /// Creates a symbol for a symbol.
20 /// </summary> 20 /// </summary>
21 /// <param name="section"></param>
21 /// <param name="symbol">Symbol for the symbol</param> 22 /// <param name="symbol">Symbol for the symbol</param>
22 public SymbolWithSection(IntermediateSection section, IntermediateSymbol symbol) 23 public SymbolWithSection(IntermediateSection section, IntermediateSymbol symbol)
23 { 24 {
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 {
diff --git a/src/WixToolset.Core/Link/WixGroupingOrdering.cs b/src/WixToolset.Core/Link/WixGroupingOrdering.cs
index a7013062..a8044a0c 100644
--- a/src/WixToolset.Core/Link/WixGroupingOrdering.cs
+++ b/src/WixToolset.Core/Link/WixGroupingOrdering.cs
@@ -29,10 +29,8 @@ namespace WixToolset.Core.Link
29 /// <summary> 29 /// <summary>
30 /// Creates a WixGroupingOrdering object. 30 /// Creates a WixGroupingOrdering object.
31 /// </summary> 31 /// </summary>
32 /// <param name="output">Output from which to read the group and order information.</param> 32 /// <param name="entrySections">Output from which to read the group and order information.</param>
33 /// <param name="messageHandler">Handler for any error messages.</param> 33 /// <param name="messageHandler">Handler for any error messages.</param>
34 /// <param name="groupTypes">Group types to include.</param>
35 /// <param name="itemTypes">Item types to include.</param>
36 public WixGroupingOrdering(IntermediateSection entrySections, IMessaging messageHandler) 34 public WixGroupingOrdering(IntermediateSection entrySections, IMessaging messageHandler)
37 { 35 {
38 this.EntrySection = entrySections; 36 this.EntrySection = entrySections;
@@ -582,7 +580,7 @@ namespace WixToolset.Core.Link
582 /// <summary> 580 /// <summary>
583 /// Adds an item to the 'after' ordering collection. 581 /// Adds an item to the 'after' ordering collection.
584 /// </summary> 582 /// </summary>
585 /// <param name="item">Items to add.</param> 583 /// <param name="after">Item to add.</param>
586 /// <param name="messageHandler">Message handler in case a circular ordering reference is found.</param> 584 /// <param name="messageHandler">Message handler in case a circular ordering reference is found.</param>
587 public void AddAfter(Item after, IMessaging messageHandler) 585 public void AddAfter(Item after, IMessaging messageHandler)
588 { 586 {