aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller/Bind/ProcessDependencyReferencesCommand.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-03-03 10:37:34 -0800
committerRob Mensching <rob@firegiant.com>2021-03-03 12:03:35 -0800
commit816bfd180f132a9b07aaa573f5ac0f5948195764 (patch)
treeeccb0db93007e00d3d8175f423338e960a7778f8 /src/WixToolset.Core.WindowsInstaller/Bind/ProcessDependencyReferencesCommand.cs
parente362f93f9fa9ed4b174333d44fcda25790bc85e0 (diff)
downloadwix-816bfd180f132a9b07aaa573f5ac0f5948195764.tar.gz
wix-816bfd180f132a9b07aaa573f5ac0f5948195764.tar.bz2
wix-816bfd180f132a9b07aaa573f5ac0f5948195764.zip
Complete MOVE_TO_BACKEND code migration
Fixes wixtoolset/issues#6212
Diffstat (limited to 'src/WixToolset.Core.WindowsInstaller/Bind/ProcessDependencyReferencesCommand.cs')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Bind/ProcessDependencyReferencesCommand.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/Bind/ProcessDependencyReferencesCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/ProcessDependencyReferencesCommand.cs
index 0ae7ca73..7a7c2649 100644
--- a/src/WixToolset.Core.WindowsInstaller/Bind/ProcessDependencyReferencesCommand.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Bind/ProcessDependencyReferencesCommand.cs
@@ -17,7 +17,7 @@ namespace WixToolset.Core.WindowsInstaller.Bind
17 private const string DependencyRegistryRoot = @"Software\Classes\Installer\Dependencies\"; 17 private const string DependencyRegistryRoot = @"Software\Classes\Installer\Dependencies\";
18 private const string RegistryDependents = "Dependents"; 18 private const string RegistryDependents = "Dependents";
19 19
20 public ProcessDependencyReferencesCommand(IWindowsInstallerBackendHelper backendHelper, IntermediateSection section, IEnumerable<WixDependencyRefSymbol> dependencyRefSymbols) 20 public ProcessDependencyReferencesCommand(IntermediateSection section, IEnumerable<WixDependencyRefSymbol> dependencyRefSymbols)
21 { 21 {
22 this.Section = section; 22 this.Section = section;
23 this.DependencyRefSymbols = dependencyRefSymbols; 23 this.DependencyRefSymbols = dependencyRefSymbols;