From 52005c7e6917f9866dd0b0de6993def16a72ed4b Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Wed, 1 Aug 2018 03:02:34 -0700 Subject: Major reduction in public surface area of WixToolset.Core --- src/WixToolset.Core/Converter.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/WixToolset.Core/Converter.cs') 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 /// /// WiX source code converter. /// - public class Converter + internal class Converter { private const string XDocumentNewLine = "\n"; // XDocument normlizes "\r\n" to just "\n". private static readonly XNamespace WixNamespace = "http://wixtoolset.org/schemas/v4/wxs"; @@ -65,7 +65,7 @@ namespace WixToolset.Core /// Indentation value to use when validating leading whitespace. /// Test errors to display as warnings. /// Test errors to ignore. - public Converter(IMessaging messaging, int indentationAmount, IEnumerable errorsAsWarnings = null, IEnumerable ignoreErrors = null) + internal Converter(IMessaging messaging, int indentationAmount, IEnumerable errorsAsWarnings = null, IEnumerable ignoreErrors = null) { this.ConvertElementMapping = new Dictionary>() { -- cgit v1.2.3-55-g6feb