aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Preprocess
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2018-08-01 03:02:34 -0700
committerRob Mensching <rob@firegiant.com>2018-08-01 03:02:34 -0700
commit52005c7e6917f9866dd0b0de6993def16a72ed4b (patch)
tree59e32ad17a3ca5915c4cddbeaa83b58a73f0c3a5 /src/WixToolset.Core/Preprocess
parent79473d778b6cc4c8eec93b92e3b244aed904dac1 (diff)
downloadwix-52005c7e6917f9866dd0b0de6993def16a72ed4b.tar.gz
wix-52005c7e6917f9866dd0b0de6993def16a72ed4b.tar.bz2
wix-52005c7e6917f9866dd0b0de6993def16a72ed4b.zip
Major reduction in public surface area of WixToolset.Core
Diffstat (limited to 'src/WixToolset.Core/Preprocess')
-rw-r--r--src/WixToolset.Core/Preprocess/IfContext.cs2
-rw-r--r--src/WixToolset.Core/Preprocess/ProcessedStreamEventHandler.cs4
2 files changed, 3 insertions, 3 deletions
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
5 /// <summary> 5 /// <summary>
6 /// Context for an if statement in the preprocessor. 6 /// Context for an if statement in the preprocessor.
7 /// </summary> 7 /// </summary>
8 internal sealed class IfContext 8 internal class IfContext
9 { 9 {
10 private bool keep; 10 private bool keep;
11 11
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
32 /// Gets the full path of the source file. 32 /// Gets the full path of the source file.
33 /// </summary> 33 /// </summary>
34 /// <value>The full path of the source file.</value> 34 /// <value>The full path of the source file.</value>
35 public string SourceFile { get; private set; } 35 public string SourceFile { get; }
36 36
37 /// <summary> 37 /// <summary>
38 /// Gets the preprocessed output stream. 38 /// Gets the preprocessed output stream.
39 /// </summary> 39 /// </summary>
40 /// <value>The the preprocessed output stream.</value> 40 /// <value>The the preprocessed output stream.</value>
41 public XDocument Document { get; private set; } 41 public XDocument Document { get; }
42 } 42 }
43} 43}