1 type derived from RegistryKeyWrapper
Microsoft.Build.Engine.UnitTests (1)
Definition\ToolsetReader_Tests.cs (1)
2745internal sealed class MockRegistryKey : RegistryKeyWrapper
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);
19 references to RegistryKeyWrapper
Microsoft.Build (16)
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;
Microsoft.Build.Engine.UnitTests (3)
Definition\ToolsetReader_Tests.cs (3)
18using RegistryKeyWrapper = Microsoft.Build.Internal.RegistryKeyWrapper; 2190RegistryKeyWrapper mockRegistryKey = 2855public override RegistryKeyWrapper OpenSubKey(string name)