@joebigelow / wix-1 / commits / 86487116

Integrate latest changes for Data

Rob Mensching committed Oct 25, 2019 at 00:31 UTC 86487116cbe096a371414e8833667c63c3481947
3 files changed +4 -4
src/WixToolset.Extensibility/BaseWindowsInstallerBackendBinderExtension.cs
+1 -1
@@ -68,7 +68,7 @@ namespace WixToolset.Extensibility
68 return false;
69 }
70
71 - public virtual void PostBackendBind(IBindResult result, Pdb pdb)
71 + public virtual void PostBackendBind(IBindResult result, WixOutput wixout)
72 {
73 }
74 }
src/WixToolset.Extensibility/Data/IExpectedExtractFile.cs
+2 -2
@@ -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
3 namespace WixToolset.Extensibility.Data
4 {
@@ -8,7 +8,7 @@ namespace WixToolset.Extensibility.Data
8 {
9 Uri Uri { get; set; }
10
11 - int EmbeddedFileIndex { get; set; }
11 + string EmbeddedFileId { get; set; }
12
13 string OutputPath { get; set; }
14 }
src/WixToolset.Extensibility/IWindowsInstallerBackendBinderExtension.cs
+1 -1
@@ -27,6 +27,6 @@ namespace WixToolset.Extensibility
27 /// <summary>
28 /// Called after all output changes occur and right before the output is bound into its final format.
29 /// </summary>
30 - void PostBackendBind(IBindResult result, Pdb wixpdb);
30 + void PostBackendBind(IBindResult result, WixOutput wixout);
31 }
32 }