3 instantiations of RegistryKeyWrapper
Microsoft.Build (3)
Definition\ToolsetRegistryReader.cs (1)
55
: this(environmentProperties, globalProperties, new
RegistryKeyWrapper
(MSBuildRegistryPath))
Utilities\RegistryKeyWrapper.cs (2)
100
using (RegistryKeyWrapper wrapper = new
RegistryKeyWrapper
(registryKeyPath, registryHive, registryView))
172
wrapper = new
RegistryKeyWrapper
(wrapper.WrappedKey.OpenSubKey(keyNames[i], false /* not writeable */), _registryHive);
25 references to RegistryKeyWrapper
Microsoft.Build (25)
Definition\Toolset.cs (9)
548
if (!
RegistryKeyWrapper
.KeyExists(Dev10OverallInstallKeyRegistryPath, RegistryHive.LocalMachine, RegistryView.Registry32))
553
RegistryKeyWrapper
.KeyExists(Dev10UltimateInstallKeyRegistryPath, RegistryHive.LocalMachine, RegistryView.Registry32) ||
554
RegistryKeyWrapper
.KeyExists(Dev10PremiumInstallKeyRegistryPath, RegistryHive.LocalMachine, RegistryView.Registry32) ||
555
RegistryKeyWrapper
.KeyExists(Dev10ProfessionalInstallKeyRegistryPath, RegistryHive.LocalMachine, RegistryView.Registry32) ||
556
RegistryKeyWrapper
.KeyExists(Dev10VCSExpressInstallKeyRegistryPath, RegistryHive.LocalMachine, RegistryView.Registry32) ||
557
RegistryKeyWrapper
.KeyExists(Dev10VBExpressInstallKeyRegistryPath, RegistryHive.LocalMachine, RegistryView.Registry32) ||
558
RegistryKeyWrapper
.KeyExists(Dev10VCExpressInstallKeyRegistryPath, RegistryHive.LocalMachine, RegistryView.Registry32) ||
559
RegistryKeyWrapper
.KeyExists(Dev10VWDExpressInstallKeyRegistryPath, RegistryHive.LocalMachine, RegistryView.Registry32) ||
560
RegistryKeyWrapper
.KeyExists(Dev10LightSwitchInstallKeyRegistryPath, RegistryHive.LocalMachine, RegistryView.Registry32))
Definition\ToolsetRegistryReader.cs (13)
16
using RegistryKeyWrapper = Microsoft.Build.Internal.
RegistryKeyWrapper
;
49
private
RegistryKeyWrapper
_msbuildRegistryWrapper;
62
internal ToolsetRegistryReader(PropertyDictionary<ProjectPropertyInstance> environmentProperties, PropertyDictionary<ProjectPropertyInstance> globalProperties,
RegistryKeyWrapper
msbuildRegistryWrapper)
80
RegistryKeyWrapper
subKey = null;
112
using (
RegistryKeyWrapper
defaultToolsVersionKey = _msbuildRegistryWrapper.OpenSubKey(Constants.AssemblyVersion))
135
using (
RegistryKeyWrapper
defaultToolsVersionKey = _msbuildRegistryWrapper.OpenSubKey(Constants.AssemblyVersion))
158
using (
RegistryKeyWrapper
defaultOverrideToolsVersionKey = _msbuildRegistryWrapper.OpenSubKey(Constants.AssemblyVersion))
177
RegistryKeyWrapper
toolsVersionWrapper = null;
208
RegistryKeyWrapper
toolsVersionWrapper = null;
239
RegistryKeyWrapper
toolsVersionWrapper = null;
240
RegistryKeyWrapper
subToolsetWrapper = null;
289
private static ToolsetPropertyDefinition CreatePropertyFromRegistry(
RegistryKeyWrapper
toolsetWrapper, string propertyName)
319
private static string GetValue(
RegistryKeyWrapper
wrapper, string valueName)
Utilities\RegistryKeyWrapper.cs (3)
100
using (
RegistryKeyWrapper
wrapper = new RegistryKeyWrapper(registryKeyPath, registryHive, registryView))
161
public virtual
RegistryKeyWrapper
OpenSubKey(string name)
165
RegistryKeyWrapper
wrapper = this;