diff options
Diffstat (limited to 'src/api/wix/WixToolset.Extensibility/IBackendFactory.cs')
-rw-r--r-- | src/api/wix/WixToolset.Extensibility/IBackendFactory.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/api/wix/WixToolset.Extensibility/IBackendFactory.cs b/src/api/wix/WixToolset.Extensibility/IBackendFactory.cs index 7f9ef62d..8e84f5b6 100644 --- a/src/api/wix/WixToolset.Extensibility/IBackendFactory.cs +++ b/src/api/wix/WixToolset.Extensibility/IBackendFactory.cs | |||
@@ -3,7 +3,7 @@ | |||
3 | namespace WixToolset.Extensibility | 3 | namespace WixToolset.Extensibility |
4 | { | 4 | { |
5 | /// <summary> | 5 | /// <summary> |
6 | /// Implemented by extensions to create backends. | 6 | /// Implemented by extensions that are backends. |
7 | /// </summary> | 7 | /// </summary> |
8 | public interface IBackendFactory | 8 | public interface IBackendFactory |
9 | { | 9 | { |
@@ -12,8 +12,8 @@ namespace WixToolset.Extensibility | |||
12 | /// </summary> | 12 | /// </summary> |
13 | /// <param name="outputType">Type of output being created.</param> | 13 | /// <param name="outputType">Type of output being created.</param> |
14 | /// <param name="outputPath">Path to the output to create.</param> | 14 | /// <param name="outputPath">Path to the output to create.</param> |
15 | /// <param name="backend">The backend for the output.</param> | 15 | /// <param name="binder">The backend for the output.</param> |
16 | /// <returns>True if the backend was created, otherwise false.</returns> | 16 | /// <returns>True if the backend was created, otherwise false.</returns> |
17 | bool TryCreateBackend(string outputType, string outputPath, out IBackend backend); | 17 | bool TryCreateBackend(string outputType, string outputPath, out IBackend binder); |
18 | } | 18 | } |
19 | } | 19 | } |