aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/IBackendFactory.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2018-10-24 20:57:22 -0700
committerRob Mensching <rob@robmensching.com>2018-10-24 21:11:31 -0700
commite6e1f9293ee1a2f19b84bd61c5a341ee29dca1c1 (patch)
tree8a6e387f618c172f747ba7b4f54c6484a8f688d1 /src/WixToolset.Extensibility/IBackendFactory.cs
parent41e60175f6db63cb988a9340c950c224dc472814 (diff)
downloadwix-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.cs4
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
3namespace WixToolset.Extensibility 3namespace 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}