diff options
author | Rob Mensching <rob@firegiant.com> | 2021-02-13 07:19:25 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-02-27 07:41:18 -0800 |
commit | 09007408ffb6c3af9fbb556d0fb34e80aede52ee (patch) | |
tree | 5c0a534c2aee500aba27fe5577c1d096539c745d /src | |
parent | 918475619d98474100bbd8736df1a284ac5231aa (diff) | |
download | wix-09007408ffb6c3af9fbb556d0fb34e80aede52ee.tar.gz wix-09007408ffb6c3af9fbb556d0fb34e80aede52ee.tar.bz2 wix-09007408ffb6c3af9fbb556d0fb34e80aede52ee.zip |
Backend specific helpers should passthru implement IBackendHelper
Diffstat (limited to 'src')
-rw-r--r-- | src/WixToolset.Extensibility/Services/IBurnBackendHelper.cs | 2 | ||||
-rw-r--r-- | src/WixToolset.Extensibility/Services/IWindowsInstallerBackendHelper.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Extensibility/Services/IBurnBackendHelper.cs b/src/WixToolset.Extensibility/Services/IBurnBackendHelper.cs index 7e8d7e3e..ef5fcc65 100644 --- a/src/WixToolset.Extensibility/Services/IBurnBackendHelper.cs +++ b/src/WixToolset.Extensibility/Services/IBurnBackendHelper.cs | |||
@@ -7,7 +7,7 @@ namespace WixToolset.Extensibility.Services | |||
7 | /// <summary> | 7 | /// <summary> |
8 | /// Interface provided to help Burn backend extensions. | 8 | /// Interface provided to help Burn backend extensions. |
9 | /// </summary> | 9 | /// </summary> |
10 | public interface IBurnBackendHelper | 10 | public interface IBurnBackendHelper : IBackendHelper |
11 | { | 11 | { |
12 | /// <summary> | 12 | /// <summary> |
13 | /// Adds the given XML to the BootstrapperApplicationData manifest. | 13 | /// Adds the given XML to the BootstrapperApplicationData manifest. |
diff --git a/src/WixToolset.Extensibility/Services/IWindowsInstallerBackendHelper.cs b/src/WixToolset.Extensibility/Services/IWindowsInstallerBackendHelper.cs index ca53ab4a..23e046fa 100644 --- a/src/WixToolset.Extensibility/Services/IWindowsInstallerBackendHelper.cs +++ b/src/WixToolset.Extensibility/Services/IWindowsInstallerBackendHelper.cs | |||
@@ -8,7 +8,7 @@ namespace WixToolset.Extensibility.Services | |||
8 | /// <summary> | 8 | /// <summary> |
9 | /// Interface provided to help Windows Installer backend extensions. | 9 | /// Interface provided to help Windows Installer backend extensions. |
10 | /// </summary> | 10 | /// </summary> |
11 | public interface IWindowsInstallerBackendHelper | 11 | public interface IWindowsInstallerBackendHelper : IBackendHelper |
12 | { | 12 | { |
13 | /// <summary> | 13 | /// <summary> |
14 | /// Creates a <see cref="Row"/> in the specified table. | 14 | /// Creates a <see cref="Row"/> in the specified table. |