diff options
Diffstat (limited to 'src/WixToolset.Core/Converter.cs')
-rw-r--r-- | src/WixToolset.Core/Converter.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Core/Converter.cs b/src/WixToolset.Core/Converter.cs index fd925f7a..1f83c88f 100644 --- a/src/WixToolset.Core/Converter.cs +++ b/src/WixToolset.Core/Converter.cs | |||
@@ -15,7 +15,7 @@ namespace WixToolset.Core | |||
15 | /// <summary> | 15 | /// <summary> |
16 | /// WiX source code converter. | 16 | /// WiX source code converter. |
17 | /// </summary> | 17 | /// </summary> |
18 | public class Converter | 18 | internal class Converter |
19 | { | 19 | { |
20 | private const string XDocumentNewLine = "\n"; // XDocument normlizes "\r\n" to just "\n". | 20 | private const string XDocumentNewLine = "\n"; // XDocument normlizes "\r\n" to just "\n". |
21 | private static readonly XNamespace WixNamespace = "http://wixtoolset.org/schemas/v4/wxs"; | 21 | private static readonly XNamespace WixNamespace = "http://wixtoolset.org/schemas/v4/wxs"; |
@@ -65,7 +65,7 @@ namespace WixToolset.Core | |||
65 | /// <param name="indentationAmount">Indentation value to use when validating leading whitespace.</param> | 65 | /// <param name="indentationAmount">Indentation value to use when validating leading whitespace.</param> |
66 | /// <param name="errorsAsWarnings">Test errors to display as warnings.</param> | 66 | /// <param name="errorsAsWarnings">Test errors to display as warnings.</param> |
67 | /// <param name="ignoreErrors">Test errors to ignore.</param> | 67 | /// <param name="ignoreErrors">Test errors to ignore.</param> |
68 | public Converter(IMessaging messaging, int indentationAmount, IEnumerable<string> errorsAsWarnings = null, IEnumerable<string> ignoreErrors = null) | 68 | internal Converter(IMessaging messaging, int indentationAmount, IEnumerable<string> errorsAsWarnings = null, IEnumerable<string> ignoreErrors = null) |
69 | { | 69 | { |
70 | this.ConvertElementMapping = new Dictionary<XName, Action<XElement>>() | 70 | this.ConvertElementMapping = new Dictionary<XName, Action<XElement>>() |
71 | { | 71 | { |