3 instantiations of RegistryKeyWrapper
Microsoft.Build (3)
Definition\ToolsetRegistryReader.cs (1)
54: this(environmentProperties, globalProperties, new RegistryKeyWrapper(MSBuildRegistryPath))
Utilities\RegistryKeyWrapper.cs (2)
100using (RegistryKeyWrapper wrapper = new RegistryKeyWrapper(registryKeyPath, registryHive, registryView)) 172wrapper = new RegistryKeyWrapper(wrapper.WrappedKey.OpenSubKey(keyNames[i], false /* not writeable */), _registryHive);
25 references to RegistryKeyWrapper
Microsoft.Build (25)
Definition\Toolset.cs (9)
558if (!RegistryKeyWrapper.KeyExists(Dev10OverallInstallKeyRegistryPath, RegistryHive.LocalMachine, RegistryView.Registry32)) 563RegistryKeyWrapper.KeyExists(Dev10UltimateInstallKeyRegistryPath, RegistryHive.LocalMachine, RegistryView.Registry32) || 564RegistryKeyWrapper.KeyExists(Dev10PremiumInstallKeyRegistryPath, RegistryHive.LocalMachine, RegistryView.Registry32) || 565RegistryKeyWrapper.KeyExists(Dev10ProfessionalInstallKeyRegistryPath, RegistryHive.LocalMachine, RegistryView.Registry32) || 566RegistryKeyWrapper.KeyExists(Dev10VCSExpressInstallKeyRegistryPath, RegistryHive.LocalMachine, RegistryView.Registry32) || 567RegistryKeyWrapper.KeyExists(Dev10VBExpressInstallKeyRegistryPath, RegistryHive.LocalMachine, RegistryView.Registry32) || 568RegistryKeyWrapper.KeyExists(Dev10VCExpressInstallKeyRegistryPath, RegistryHive.LocalMachine, RegistryView.Registry32) || 569RegistryKeyWrapper.KeyExists(Dev10VWDExpressInstallKeyRegistryPath, RegistryHive.LocalMachine, RegistryView.Registry32) || 570RegistryKeyWrapper.KeyExists(Dev10LightSwitchInstallKeyRegistryPath, RegistryHive.LocalMachine, RegistryView.Registry32))
Definition\ToolsetRegistryReader.cs (13)
15using RegistryKeyWrapper = Microsoft.Build.Internal.RegistryKeyWrapper; 48private RegistryKeyWrapper _msbuildRegistryWrapper; 61internal ToolsetRegistryReader(PropertyDictionary<ProjectPropertyInstance> environmentProperties, PropertyDictionary<ProjectPropertyInstance> globalProperties, RegistryKeyWrapper msbuildRegistryWrapper) 79RegistryKeyWrapper subKey = null; 111using (RegistryKeyWrapper defaultToolsVersionKey = _msbuildRegistryWrapper.OpenSubKey(Constants.AssemblyVersion)) 134using (RegistryKeyWrapper defaultToolsVersionKey = _msbuildRegistryWrapper.OpenSubKey(Constants.AssemblyVersion)) 157using (RegistryKeyWrapper defaultOverrideToolsVersionKey = _msbuildRegistryWrapper.OpenSubKey(Constants.AssemblyVersion)) 176RegistryKeyWrapper toolsVersionWrapper = null; 207RegistryKeyWrapper toolsVersionWrapper = null; 238RegistryKeyWrapper toolsVersionWrapper = null; 239RegistryKeyWrapper subToolsetWrapper = null; 288private static ToolsetPropertyDefinition CreatePropertyFromRegistry(RegistryKeyWrapper toolsetWrapper, string propertyName) 318private static string GetValue(RegistryKeyWrapper wrapper, string valueName)
Utilities\RegistryKeyWrapper.cs (3)
100using (RegistryKeyWrapper wrapper = new RegistryKeyWrapper(registryKeyPath, registryHive, registryView)) 161public virtual RegistryKeyWrapper OpenSubKey(string name) 165RegistryKeyWrapper wrapper = this;