From 0e71bdd637a6b3c34f18d4b3630d55fa4cdfd2a3 Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Fri, 18 Dec 2020 22:04:48 -0600 Subject: Enable XML doc. --- src/WixToolset.Core/Compiler.cs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src/WixToolset.Core/Compiler.cs') diff --git a/src/WixToolset.Core/Compiler.cs b/src/WixToolset.Core/Compiler.cs index addb9750..62ea8aaf 100644 --- a/src/WixToolset.Core/Compiler.cs +++ b/src/WixToolset.Core/Compiler.cs @@ -886,7 +886,7 @@ namespace WixToolset.Core /// Parses an instance element. /// /// Element to parse. - /// Identifier of instance property. + /// Identifier of instance property. private void ParseInstanceElement(XElement node, string propertyId) { var sourceLineNumbers = Preprocessor.GetSourceLineNumbers(node); @@ -1641,6 +1641,7 @@ namespace WixToolset.Core /// Parses a product search element. /// /// Element to parse. + /// /// Signature for search element. private void ParseProductSearchElement(XElement node, string propertyId) { @@ -2570,6 +2571,8 @@ namespace WixToolset.Core /// Parses a component group element. /// /// Element to parse. + /// + /// [SuppressMessage("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] private void ParseComponentGroupElement(XElement node, ComplexReferenceParentType parentType, string parentId) { @@ -5024,6 +5027,8 @@ namespace WixToolset.Core /// Parses a feature group element. /// /// Element to parse. + /// + /// [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] private void ParseFeatureGroupElement(XElement node, ComplexReferenceParentType parentType, string parentId) { @@ -5477,6 +5482,7 @@ namespace WixToolset.Core /// Default source path of parent directory. /// This will be set with the possible keyPath for the parent component. /// true if the component is 64-bit. + /// /// Yes if this element was marked as the parent component's key path, No if explicitly marked as not being a key path, or NotSet otherwise. [SuppressMessage("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] private YesNoType ParseFileElement(XElement node, string componentId, string directoryId, int diskId, string sourcePath, out string possibleKeyPath, bool win64Component, string componentGuid) @@ -6934,7 +6940,7 @@ namespace WixToolset.Core /// Parses a MajorUpgrade element. /// /// The element to parse. - /// The parent element. + /// The current context. private void ParseMajorUpgradeElement(XElement node, IDictionary contextValues) { var sourceLineNumbers = Preprocessor.GetSourceLineNumbers(node); -- cgit v1.2.3-55-g6feb