diff options
-rw-r--r-- | src/WixToolset.Extensibility/Data/ILayoutContext.cs | 2 | ||||
-rw-r--r-- | src/WixToolset.Extensibility/Data/IPreprocessContext.cs | 4 | ||||
-rw-r--r-- | src/WixToolset.Extensibility/IBackendFactory.cs | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/WixToolset.Extensibility/Data/ILayoutContext.cs b/src/WixToolset.Extensibility/Data/ILayoutContext.cs index 89aadc4d..5c0a46c7 100644 --- a/src/WixToolset.Extensibility/Data/ILayoutContext.cs +++ b/src/WixToolset.Extensibility/Data/ILayoutContext.cs | |||
@@ -19,6 +19,8 @@ namespace WixToolset.Extensibility.Data | |||
19 | 19 | ||
20 | string OutputsFile { get; set; } | 20 | string OutputsFile { get; set; } |
21 | 21 | ||
22 | string IntermediateFolder { get; set; } | ||
23 | |||
22 | string BuiltOutputsFile { get; set; } | 24 | string BuiltOutputsFile { get; set; } |
23 | 25 | ||
24 | bool SuppressAclReset { get; set; } | 26 | bool SuppressAclReset { get; set; } |
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 | ||
diff --git a/src/WixToolset.Extensibility/IBackendFactory.cs b/src/WixToolset.Extensibility/IBackendFactory.cs index 02f0809a..1155e9b6 100644 --- a/src/WixToolset.Extensibility/IBackendFactory.cs +++ b/src/WixToolset.Extensibility/IBackendFactory.cs | |||
@@ -2,10 +2,8 @@ | |||
2 | 2 | ||
3 | namespace WixToolset.Extensibility | 3 | namespace WixToolset.Extensibility |
4 | { | 4 | { |
5 | using WixToolset.Extensibility.Data; | ||
6 | |||
7 | public interface IBackendFactory | 5 | public interface IBackendFactory |
8 | { | 6 | { |
9 | bool TryCreateBackend(string outputType, string outputPath, IBindContext context, out IBackend backend); | 7 | bool TryCreateBackend(string outputType, string outputPath, out IBackend backend); |
10 | } | 8 | } |
11 | } | 9 | } |