diff options
| author | Rob Mensching <rob@firegiant.com> | 2018-10-24 21:06:06 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@robmensching.com> | 2018-10-24 21:17:34 -0700 |
| commit | 7a2859709034f7f4f048a0757779a6e2fee6df5b (patch) | |
| tree | 6a5519b5ffa7adf97b4962bc40d83716accf9e4e /src/WixToolset.Core.WindowsInstaller/Bind | |
| parent | f195604266cb2b675d31c21df343e1f2ac8bdb0c (diff) | |
| download | wix-7a2859709034f7f4f048a0757779a6e2fee6df5b.tar.gz wix-7a2859709034f7f4f048a0757779a6e2fee6df5b.tar.bz2 wix-7a2859709034f7f4f048a0757779a6e2fee6df5b.zip | |
Update to fixed "binder" names in interfaces
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Bind')
4 files changed, 7 insertions, 7 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs index a7da13bb..020f58b3 100644 --- a/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs +++ b/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs | |||
| @@ -22,7 +22,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind | |||
| 22 | // As outlined in RFC 4122, this is our namespace for generating name-based (version 3) UUIDs. | 22 | // As outlined in RFC 4122, this is our namespace for generating name-based (version 3) UUIDs. |
| 23 | internal static readonly Guid WixComponentGuidNamespace = new Guid("{3064E5C6-FB63-4FE9-AC49-E446A792EFA5}"); | 23 | internal static readonly Guid WixComponentGuidNamespace = new Guid("{3064E5C6-FB63-4FE9-AC49-E446A792EFA5}"); |
| 24 | 24 | ||
| 25 | public BindDatabaseCommand(IBindContext context, IEnumerable<IWindowsInstallerBackendExtension> backendExtension, Validator validator) | 25 | public BindDatabaseCommand(IBindContext context, IEnumerable<IWindowsInstallerBackendBinderExtension> backendExtension, Validator validator) |
| 26 | { | 26 | { |
| 27 | this.Messaging = context.ServiceProvider.GetService<IMessaging>(); | 27 | this.Messaging = context.ServiceProvider.GetService<IMessaging>(); |
| 28 | 28 | ||
| @@ -66,7 +66,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind | |||
| 66 | 66 | ||
| 67 | public bool DeltaBinaryPatch { get; set; } | 67 | public bool DeltaBinaryPatch { get; set; } |
| 68 | 68 | ||
| 69 | private IEnumerable<IWindowsInstallerBackendExtension> BackendExtensions { get; } | 69 | private IEnumerable<IWindowsInstallerBackendBinderExtension> BackendExtensions { get; } |
| 70 | 70 | ||
| 71 | private Intermediate Intermediate { get; } | 71 | private Intermediate Intermediate { get; } |
| 72 | 72 | ||
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/CabinetResolver.cs b/src/WixToolset.Core.WindowsInstaller/Bind/CabinetResolver.cs index 541dacf8..2a717ec5 100644 --- a/src/WixToolset.Core.WindowsInstaller/Bind/CabinetResolver.cs +++ b/src/WixToolset.Core.WindowsInstaller/Bind/CabinetResolver.cs | |||
| @@ -14,7 +14,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind | |||
| 14 | 14 | ||
| 15 | public class CabinetResolver | 15 | public class CabinetResolver |
| 16 | { | 16 | { |
| 17 | public CabinetResolver(string cabCachePath, IEnumerable<IWindowsInstallerBackendExtension> backendExtensions) | 17 | public CabinetResolver(string cabCachePath, IEnumerable<IWindowsInstallerBackendBinderExtension> backendExtensions) |
| 18 | { | 18 | { |
| 19 | this.CabCachePath = cabCachePath; | 19 | this.CabCachePath = cabCachePath; |
| 20 | 20 | ||
| @@ -23,7 +23,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind | |||
| 23 | 23 | ||
| 24 | private string CabCachePath { get; } | 24 | private string CabCachePath { get; } |
| 25 | 25 | ||
| 26 | private IEnumerable<IWindowsInstallerBackendExtension> BackendExtensions { get; } | 26 | private IEnumerable<IWindowsInstallerBackendBinderExtension> BackendExtensions { get; } |
| 27 | 27 | ||
| 28 | public ResolvedCabinet ResolveCabinet(string cabinetPath, IEnumerable<FileFacade> fileFacades) | 28 | public ResolvedCabinet ResolveCabinet(string cabinetPath, IEnumerable<FileFacade> fileFacades) |
| 29 | { | 29 | { |
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/CreateCabinetsCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/CreateCabinetsCommand.cs index a85312c4..88be831e 100644 --- a/src/WixToolset.Core.WindowsInstaller/Bind/CreateCabinetsCommand.cs +++ b/src/WixToolset.Core.WindowsInstaller/Bind/CreateCabinetsCommand.cs | |||
| @@ -64,7 +64,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind | |||
| 64 | /// </summary> | 64 | /// </summary> |
| 65 | public CompressionLevel? DefaultCompressionLevel { private get; set; } | 65 | public CompressionLevel? DefaultCompressionLevel { private get; set; } |
| 66 | 66 | ||
| 67 | public IEnumerable<IWindowsInstallerBackendExtension> BackendExtensions { private get; set; } | 67 | public IEnumerable<IWindowsInstallerBackendBinderExtension> BackendExtensions { private get; set; } |
| 68 | 68 | ||
| 69 | public Output Output { private get; set; } | 69 | public Output Output { private get; set; } |
| 70 | 70 | ||
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs index ac770823..4d5d278b 100644 --- a/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs +++ b/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs | |||
| @@ -14,14 +14,14 @@ namespace WixToolset.Core.WindowsInstaller.Bind | |||
| 14 | 14 | ||
| 15 | internal class CreateOutputFromIRCommand | 15 | internal class CreateOutputFromIRCommand |
| 16 | { | 16 | { |
| 17 | public CreateOutputFromIRCommand(IntermediateSection section, TableDefinitionCollection tableDefinitions, IEnumerable<IWindowsInstallerBackendExtension> backendExtensions) | 17 | public CreateOutputFromIRCommand(IntermediateSection section, TableDefinitionCollection tableDefinitions, IEnumerable<IWindowsInstallerBackendBinderExtension> backendExtensions) |
| 18 | { | 18 | { |
| 19 | this.Section = section; | 19 | this.Section = section; |
| 20 | this.TableDefinitions = tableDefinitions; | 20 | this.TableDefinitions = tableDefinitions; |
| 21 | this.BackendExtensions = backendExtensions; | 21 | this.BackendExtensions = backendExtensions; |
| 22 | } | 22 | } |
| 23 | 23 | ||
| 24 | private IEnumerable<IWindowsInstallerBackendExtension> BackendExtensions { get; } | 24 | private IEnumerable<IWindowsInstallerBackendBinderExtension> BackendExtensions { get; } |
| 25 | 25 | ||
| 26 | private TableDefinitionCollection TableDefinitions { get; } | 26 | private TableDefinitionCollection TableDefinitions { get; } |
| 27 | 27 | ||
