diff options
author | Bob Arnson <bob@firegiant.com> | 2019-02-26 21:21:04 -0500 |
---|---|---|
committer | Bob Arnson <bob@firegiant.com> | 2019-02-26 21:24:02 -0500 |
commit | bcd212a2ef41459789528c5956d8e6abd1b7d405 (patch) | |
tree | 25bcfd4c845997ca9ed055fe0841aff66fa4c786 /src | |
parent | a5716c07a663cc31d2609d9481a72272ef77ba0b (diff) | |
download | wix-bcd212a2ef41459789528c5956d8e6abd1b7d405.tar.gz wix-bcd212a2ef41459789528c5956d8e6abd1b7d405.tar.bz2 wix-bcd212a2ef41459789528c5956d8e6abd1b7d405.zip |
Make `IPreprocessor` public as it should be.
Diffstat (limited to 'src')
-rw-r--r-- | src/WixToolset.Core/IPreprocessor.cs | 4 |
1 files changed, 2 insertions, 2 deletions
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 @@ | |||
1 | // 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. | 1 | // 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. |
2 | 2 | ||
3 | namespace WixToolset.Core | 3 | namespace WixToolset.Core |
4 | { | 4 | { |
@@ -6,7 +6,7 @@ namespace WixToolset.Core | |||
6 | using System.Xml.Linq; | 6 | using System.Xml.Linq; |
7 | using WixToolset.Extensibility.Data; | 7 | using WixToolset.Extensibility.Data; |
8 | 8 | ||
9 | internal interface IPreprocessor | 9 | public interface IPreprocessor |
10 | { | 10 | { |
11 | XDocument Preprocess(IPreprocessContext context); | 11 | XDocument Preprocess(IPreprocessContext context); |
12 | 12 | ||