aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2018-10-24 21:06:06 -0700
committerRob Mensching <rob@robmensching.com>2018-10-24 21:17:34 -0700
commit7a2859709034f7f4f048a0757779a6e2fee6df5b (patch)
tree6a5519b5ffa7adf97b4962bc40d83716accf9e4e /src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs
parentf195604266cb2b675d31c21df343e1f2ac8bdb0c (diff)
downloadwix-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/CreateOutputFromIRCommand.cs')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Bind/CreateOutputFromIRCommand.cs4
1 files changed, 2 insertions, 2 deletions
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