diff options
author | Rob Mensching <rob@firegiant.com> | 2018-10-24 20:57:22 -0700 |
---|---|---|
committer | Rob Mensching <rob@robmensching.com> | 2018-10-24 21:11:31 -0700 |
commit | e6e1f9293ee1a2f19b84bd61c5a341ee29dca1c1 (patch) | |
tree | 8a6e387f618c172f747ba7b4f54c6484a8f688d1 /src/WixToolset.Extensibility/IBackendFactory.cs | |
parent | 41e60175f6db63cb988a9340c950c224dc472814 (diff) | |
download | wix-e6e1f9293ee1a2f19b84bd61c5a341ee29dca1c1.tar.gz wix-e6e1f9293ee1a2f19b84bd61c5a341ee29dca1c1.tar.bz2 wix-e6e1f9293ee1a2f19b84bd61c5a341ee29dca1c1.zip |
Remove unused IBindContext from IBackendFactory and other small fixes
Diffstat (limited to '')
-rw-r--r-- | src/WixToolset.Extensibility/IBackendFactory.cs | 4 |
1 files changed, 1 insertions, 3 deletions
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 | } |