aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs
index 7a64b777..292f1572 100644
--- a/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Bind/BindDatabaseCommand.cs
@@ -192,6 +192,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind
192 command.Execute(); 192 command.Execute();
193 } 193 }
194 194
195 if (section.Type == SectionType.Product || section.Type == SectionType.Module)
195 { 196 {
196 var command = new AddRequiredStandardDirectories(section, platform); 197 var command = new AddRequiredStandardDirectories(section, platform);
197 command.Execute(); 198 command.Execute();
@@ -329,7 +330,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind
329 330
330 if (dependencyRefs.Any()) 331 if (dependencyRefs.Any())
331 { 332 {
332 var command = new ProcessDependencyReferencesCommand(this.WindowsInstallerBackendHelper, section, dependencyRefs); 333 var command = new ProcessDependencyReferencesCommand(section, dependencyRefs);
333 command.Execute(); 334 command.Execute();
334 } 335 }
335 } 336 }