1 implementation of IRegistryKey
Microsoft.TestPlatform.CoreUtilities (1)
Helpers\WindowsRegistryHelper.cs (1)
19internal class RegistryKeyWrapper : IRegistryKey
7 references to IRegistryKey
Microsoft.TestPlatform.CoreUtilities (7)
Helpers\DotnetHostHelper.cs (3)
317using IRegistryKey? hklm = _windowsRegistryHelper.OpenBaseKey(RegistryHive.LocalMachine, RegistryView.Registry32); 324using IRegistryKey? dotnetInstalledVersion = hklm.OpenSubKey(@"SOFTWARE\dotnet\Setup\InstalledVersions"); 331using IRegistryKey? nativeArch = dotnetInstalledVersion.OpenSubKey(targetArchitecture.ToString().ToLowerInvariant());
Helpers\Interfaces\IWindowsRegistryHelper.cs (2)
12IRegistryKey? OpenBaseKey(RegistryHive hKey, RegistryView view); 17IRegistryKey? OpenSubKey(string name);
Helpers\WindowsRegistryHelper.cs (2)
12public IRegistryKey? OpenBaseKey(RegistryHive hKey, RegistryView view) 33public IRegistryKey? OpenSubKey(string name)