diff options
3 files changed, 4 insertions, 4 deletions
diff --git a/src/WixToolset.Extensibility/BaseWindowsInstallerBackendBinderExtension.cs b/src/WixToolset.Extensibility/BaseWindowsInstallerBackendBinderExtension.cs index f02875cd..c3f97862 100644 --- a/src/WixToolset.Extensibility/BaseWindowsInstallerBackendBinderExtension.cs +++ b/src/WixToolset.Extensibility/BaseWindowsInstallerBackendBinderExtension.cs | |||
| @@ -68,7 +68,7 @@ namespace WixToolset.Extensibility | |||
| 68 | return false; | 68 | return false; |
| 69 | } | 69 | } |
| 70 | 70 | ||
| 71 | public virtual void PostBackendBind(IBindResult result, Pdb pdb) | 71 | public virtual void PostBackendBind(IBindResult result, WixOutput wixout) |
| 72 | { | 72 | { |
| 73 | } | 73 | } |
| 74 | } | 74 | } |
diff --git a/src/WixToolset.Extensibility/Data/IExpectedExtractFile.cs b/src/WixToolset.Extensibility/Data/IExpectedExtractFile.cs index edcf82e0..50015112 100644 --- a/src/WixToolset.Extensibility/Data/IExpectedExtractFile.cs +++ b/src/WixToolset.Extensibility/Data/IExpectedExtractFile.cs | |||
| @@ -1,4 +1,4 @@ | |||
| 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. | 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 | 2 | ||
| 3 | namespace WixToolset.Extensibility.Data | 3 | namespace WixToolset.Extensibility.Data |
| 4 | { | 4 | { |
| @@ -8,7 +8,7 @@ namespace WixToolset.Extensibility.Data | |||
| 8 | { | 8 | { |
| 9 | Uri Uri { get; set; } | 9 | Uri Uri { get; set; } |
| 10 | 10 | ||
| 11 | int EmbeddedFileIndex { get; set; } | 11 | string EmbeddedFileId { get; set; } |
| 12 | 12 | ||
| 13 | string OutputPath { get; set; } | 13 | string OutputPath { get; set; } |
| 14 | } | 14 | } |
diff --git a/src/WixToolset.Extensibility/IWindowsInstallerBackendBinderExtension.cs b/src/WixToolset.Extensibility/IWindowsInstallerBackendBinderExtension.cs index f3b97845..ba091fd9 100644 --- a/src/WixToolset.Extensibility/IWindowsInstallerBackendBinderExtension.cs +++ b/src/WixToolset.Extensibility/IWindowsInstallerBackendBinderExtension.cs | |||
| @@ -27,6 +27,6 @@ namespace WixToolset.Extensibility | |||
| 27 | /// <summary> | 27 | /// <summary> |
| 28 | /// Called after all output changes occur and right before the output is bound into its final format. | 28 | /// Called after all output changes occur and right before the output is bound into its final format. |
| 29 | /// </summary> | 29 | /// </summary> |
| 30 | void PostBackendBind(IBindResult result, Pdb wixpdb); | 30 | void PostBackendBind(IBindResult result, WixOutput wixout); |
| 31 | } | 31 | } |
| 32 | } | 32 | } |
