aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Preprocess/ProcessedStreamEventHandler.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core/Preprocess/ProcessedStreamEventHandler.cs')
-rw-r--r--src/WixToolset.Core/Preprocess/ProcessedStreamEventHandler.cs4
1 files changed, 2 insertions, 2 deletions
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}