diff options
Diffstat (limited to 'src/WixToolset.Core/Compiler_2.cs')
-rw-r--r-- | src/WixToolset.Core/Compiler_2.cs | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/WixToolset.Core/Compiler_2.cs b/src/WixToolset.Core/Compiler_2.cs index d2a6bb83..af56f0ef 100644 --- a/src/WixToolset.Core/Compiler_2.cs +++ b/src/WixToolset.Core/Compiler_2.cs | |||
@@ -1523,9 +1523,6 @@ namespace WixToolset.Core | |||
1523 | /// <param name="win64Component">true if the component is 64-bit.</param> | 1523 | /// <param name="win64Component">true if the component is 64-bit.</param> |
1524 | /// <param name="possibleKeyPath">Identifier of this registry key since it could be the component's keypath.</param> | 1524 | /// <param name="possibleKeyPath">Identifier of this registry key since it could be the component's keypath.</param> |
1525 | /// <returns>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.</returns> | 1525 | /// <returns>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.</returns> |
1526 | [SuppressMessage("Microsoft.Globalization", "CA1308:NormalizeStringsToUppercase", Justification = "Changing the way this string normalizes would result " + | ||
1527 | "in a change to the way the Registry table is generated, potentially causing extra churn in patches on an MSI built from an older version of WiX. " + | ||
1528 | "Furthermore, there is no security hole here, as the strings won't need to make a round trip")] | ||
1529 | private YesNoType ParseRegistryKeyElement(XElement node, string componentId, RegistryRootType? root, string parentKey, bool win64Component, out string possibleKeyPath) | 1526 | private YesNoType ParseRegistryKeyElement(XElement node, string componentId, RegistryRootType? root, string parentKey, bool win64Component, out string possibleKeyPath) |
1530 | { | 1527 | { |
1531 | var sourceLineNumbers = Preprocessor.GetSourceLineNumbers(node); | 1528 | var sourceLineNumbers = Preprocessor.GetSourceLineNumbers(node); |
@@ -1718,9 +1715,6 @@ namespace WixToolset.Core | |||
1718 | /// <param name="win64Component">true if the component is 64-bit.</param> | 1715 | /// <param name="win64Component">true if the component is 64-bit.</param> |
1719 | /// <param name="possibleKeyPath">Identifier of this registry key since it could be the component's keypath.</param> | 1716 | /// <param name="possibleKeyPath">Identifier of this registry key since it could be the component's keypath.</param> |
1720 | /// <returns>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.</returns> | 1717 | /// <returns>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.</returns> |
1721 | [SuppressMessage("Microsoft.Globalization", "CA1308:NormalizeStringsToUppercase", Justification = "Changing the way this string normalizes would result " + | ||
1722 | "in a change to the way the Registry table is generated, potentially causing extra churn in patches on an MSI built from an older version of WiX. " + | ||
1723 | "Furthermore, there is no security hole here, as the strings won't need to make a round trip")] | ||
1724 | private YesNoType ParseRegistryValueElement(XElement node, string componentId, RegistryRootType? root, string parentKey, bool win64Component, out string possibleKeyPath) | 1718 | private YesNoType ParseRegistryValueElement(XElement node, string componentId, RegistryRootType? root, string parentKey, bool win64Component, out string possibleKeyPath) |
1725 | { | 1719 | { |
1726 | var sourceLineNumbers = Preprocessor.GetSourceLineNumbers(node); | 1720 | var sourceLineNumbers = Preprocessor.GetSourceLineNumbers(node); |
@@ -1994,9 +1988,6 @@ namespace WixToolset.Core | |||
1994 | /// </summary> | 1988 | /// </summary> |
1995 | /// <param name="node">The element to parse.</param> | 1989 | /// <param name="node">The element to parse.</param> |
1996 | /// <param name="componentId">The component identifier of the parent element.</param> | 1990 | /// <param name="componentId">The component identifier of the parent element.</param> |
1997 | [SuppressMessage("Microsoft.Globalization", "CA1308:NormalizeStringsToUppercase", Justification = "Changing the way this string normalizes would result " + | ||
1998 | "in a change to the way the Registry table is generated, potentially causing extra churn in patches on an MSI built from an older version of WiX. " + | ||
1999 | "Furthermore, there is no security hole here, as the strings won't need to make a round trip")] | ||
2000 | private void ParseRemoveRegistryKeyElement(XElement node, string componentId) | 1991 | private void ParseRemoveRegistryKeyElement(XElement node, string componentId) |
2001 | { | 1992 | { |
2002 | var sourceLineNumbers = Preprocessor.GetSourceLineNumbers(node); | 1993 | var sourceLineNumbers = Preprocessor.GetSourceLineNumbers(node); |
@@ -2097,9 +2088,6 @@ namespace WixToolset.Core | |||
2097 | /// </summary> | 2088 | /// </summary> |
2098 | /// <param name="node">The element to parse.</param> | 2089 | /// <param name="node">The element to parse.</param> |
2099 | /// <param name="componentId">The component identifier of the parent element.</param> | 2090 | /// <param name="componentId">The component identifier of the parent element.</param> |
2100 | [SuppressMessage("Microsoft.Globalization", "CA1308:NormalizeStringsToUppercase", Justification = "Changing the way this string normalizes would result " + | ||
2101 | "in a change to the way the Registry table is generated, potentially causing extra churn in patches on an MSI built from an older version of WiX. " + | ||
2102 | "Furthermore, there is no security hole here, as the strings won't need to make a round trip")] | ||
2103 | private void ParseRemoveRegistryValueElement(XElement node, string componentId) | 2091 | private void ParseRemoveRegistryValueElement(XElement node, string componentId) |
2104 | { | 2092 | { |
2105 | var sourceLineNumbers = Preprocessor.GetSourceLineNumbers(node); | 2093 | var sourceLineNumbers = Preprocessor.GetSourceLineNumbers(node); |