From bcd212a2ef41459789528c5956d8e6abd1b7d405 Mon Sep 17 00:00:00 2001 From: Bob Arnson Date: Tue, 26 Feb 2019 21:21:04 -0500 Subject: Make `IPreprocessor` public as it should be. --- src/WixToolset.Core/IPreprocessor.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/WixToolset.Core/IPreprocessor.cs b/src/WixToolset.Core/IPreprocessor.cs index 946d8cc2..d892399c 100644 --- a/src/WixToolset.Core/IPreprocessor.cs +++ b/src/WixToolset.Core/IPreprocessor.cs @@ -1,4 +1,4 @@ -// 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. +// 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. namespace WixToolset.Core { @@ -6,7 +6,7 @@ namespace WixToolset.Core using System.Xml.Linq; using WixToolset.Extensibility.Data; - internal interface IPreprocessor + public interface IPreprocessor { XDocument Preprocess(IPreprocessContext context); -- cgit v1.2.3-55-g6feb