aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/Data/IPreprocessContext.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Extensibility/Data/IPreprocessContext.cs')
-rw-r--r--src/WixToolset.Extensibility/Data/IPreprocessContext.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Extensibility/Data/IPreprocessContext.cs b/src/WixToolset.Extensibility/Data/IPreprocessContext.cs
index a923c4db..42dfbb75 100644
--- a/src/WixToolset.Extensibility/Data/IPreprocessContext.cs
+++ b/src/WixToolset.Extensibility/Data/IPreprocessContext.cs
@@ -12,7 +12,7 @@ namespace WixToolset.Extensibility.Data
12 12
13 IEnumerable<IPreprocessorExtension> Extensions { get; set; } 13 IEnumerable<IPreprocessorExtension> Extensions { get; set; }
14 14
15 IList<string> IncludeSearchPaths { get; set; } 15 IEnumerable<string> IncludeSearchPaths { get; set; }
16 16
17 /// <summary> 17 /// <summary>
18 /// Gets the platform which the compiler will use when defaulting 64-bit attributes and elements. 18 /// Gets the platform which the compiler will use when defaulting 64-bit attributes and elements.
@@ -20,7 +20,7 @@ namespace WixToolset.Extensibility.Data
20 /// <value>The platform which the compiler will use when defaulting 64-bit attributes and elements.</value> 20 /// <value>The platform which the compiler will use when defaulting 64-bit attributes and elements.</value>
21 Platform Platform { get; set; } 21 Platform Platform { get; set; }
22 22
23 string SourceFile { get; set; } 23 string SourcePath { get; set; }
24 24
25 IDictionary<string, string> Variables { get; set; } 25 IDictionary<string, string> Variables { get; set; }
26 26