diff options
Diffstat (limited to 'src/WixToolset.Extensibility/IWindowsInstallerBackendExtension.cs')
| -rw-r--r-- | src/WixToolset.Extensibility/IWindowsInstallerBackendExtension.cs | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/WixToolset.Extensibility/IWindowsInstallerBackendExtension.cs b/src/WixToolset.Extensibility/IWindowsInstallerBackendExtension.cs new file mode 100644 index 00000000..3b01cc0d --- /dev/null +++ b/src/WixToolset.Extensibility/IWindowsInstallerBackendExtension.cs | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. | ||
| 2 | |||
| 3 | namespace WixToolset.Extensibility | ||
| 4 | { | ||
| 5 | using System.Collections.Generic; | ||
| 6 | using WixToolset.Data.Rows; | ||
| 7 | using WixToolset.Data.Bind; | ||
| 8 | using WixToolset.Extensibility.Services; | ||
| 9 | |||
| 10 | /// <summary> | ||
| 11 | /// Interface all binder extensions implement. | ||
| 12 | /// </summary> | ||
| 13 | public interface IWindowsInstallerBackendExtension | ||
| 14 | { | ||
| 15 | /// <summary> | ||
| 16 | /// Called before binding occurs. | ||
| 17 | /// </summary> | ||
| 18 | void PreBackendBind(IBindContext context); | ||
| 19 | |||
| 20 | ResolvedCabinet ResolveCabinet(string cabinetPath, IEnumerable<BindFileWithPath> files); | ||
| 21 | |||
| 22 | string ResolveMedia(MediaRow mediaRow, string mediaLayoutDirectory, string layoutDirectory); | ||
| 23 | |||
| 24 | /// <summary> | ||
| 25 | /// Called after all output changes occur and right before the output is bound into its final format. | ||
| 26 | /// </summary> | ||
| 27 | void PostBackendBind(BindResult result); | ||
| 28 | } | ||
| 29 | } | ||
