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/Preprocess/IfContext.cs | 2 +- src/WixToolset.Core/Preprocess/ProcessedStreamEventHandler.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/WixToolset.Core/Preprocess') diff --git a/src/WixToolset.Core/Preprocess/IfContext.cs b/src/WixToolset.Core/Preprocess/IfContext.cs index e7c6e6f5..91173c29 100644 --- a/src/WixToolset.Core/Preprocess/IfContext.cs +++ b/src/WixToolset.Core/Preprocess/IfContext.cs @@ -5,7 +5,7 @@ namespace WixToolset.Core.Preprocess /// /// Context for an if statement in the preprocessor. /// - internal sealed class IfContext + internal class IfContext { private bool keep; diff --git a/src/WixToolset.Core/Preprocess/ProcessedStreamEventHandler.cs b/src/WixToolset.Core/Preprocess/ProcessedStreamEventHandler.cs index 434590d2..b2a4ddb1 100644 --- a/src/WixToolset.Core/Preprocess/ProcessedStreamEventHandler.cs +++ b/src/WixToolset.Core/Preprocess/ProcessedStreamEventHandler.cs @@ -32,12 +32,12 @@ namespace WixToolset.Core.Preprocess /// Gets the full path of the source file. /// /// The full path of the source file. - public string SourceFile { get; private set; } + public string SourceFile { get; } /// /// Gets the preprocessed output stream. /// /// The the preprocessed output stream. - public XDocument Document { get; private set; } + public XDocument Document { get; } } } -- cgit v1.2.3-55-g6feb