Remove unused IBindContext from IBackendFactory and other small fixes
Rob Mensching committed
Oct 24, 2018 at 20:57 UTC
e6e1f9293ee1a2f19b84bd61c5a341ee29dca1c1
3 files changed
+5
-5
src/WixToolset.Extensibility/Data/ILayoutContext.cs
+2
@@ -19,6 +19,8 @@ namespace WixToolset.Extensibility.Data
19
20
string OutputsFile { get; set; }
21
22
+ string IntermediateFolder { get; set; }
23
+
24
string BuiltOutputsFile { get; set; }
25
26
bool SuppressAclReset { get; set; }
src/WixToolset.Extensibility/Data/IPreprocessContext.cs
+2
-2
@@ -12,7 +12,7 @@ namespace WixToolset.Extensibility.Data
12
13
IEnumerable<IPreprocessorExtension> Extensions { get; set; }
14
15
- IList<string> IncludeSearchPaths { get; set; }
15
+ IEnumerable<string> IncludeSearchPaths { get; set; }
16
17
/// <summary>
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>
21
Platform Platform { get; set; }
22
23
- string SourceFile { get; set; }
23
+ string SourcePath { get; set; }
24
25
IDictionary<string, string> Variables { get; set; }
26
src/WixToolset.Extensibility/IBackendFactory.cs
+1
-3
@@ -2,10 +2,8 @@
2
3
namespace WixToolset.Extensibility
4
{
5
- using WixToolset.Extensibility.Data;
6
-
5
public interface IBackendFactory
6
{
9
- bool TryCreateBackend(string outputType, string outputPath, IBindContext context, out IBackend backend);
7
+ bool TryCreateBackend(string outputType, string outputPath, out IBackend backend);
8
}
9
}