1 write to BaseKey
Microsoft.DotNet.Cli.Utils (1)
DependencyProvider.cs (1)
105BaseKey = AllUsers ? Registry.LocalMachine : Registry.CurrentUser;
8 references to BaseKey
Microsoft.DotNet.Cli.Utils (8)
DependencyProvider.cs (8)
37/// The relative path from the <see cref="BaseKey"/> to the Dependencies key. 60/// The path of the key where the provider's dependents are stored, relative to the <see cref="BaseKey"/>. 81/// The path of the provider key, relative to the <see cref="BaseKey"/>. 127using RegistryKey dependentsKey = BaseKey.CreateSubKey(Path.Combine(DependentsKeyPath, dependent), writable: true); 149using RegistryKey? dependentsKey = BaseKey.OpenSubKey(DependentsKeyPath, writable: true); 154using RegistryKey? providerKey = BaseKey.OpenSubKey(DependenciesKeyRelativePath, writable: true); 165using RegistryKey? dependentsKey = BaseKey.OpenSubKey(DependentsKeyPath); 177using RegistryKey? providerKey = BaseKey.OpenSubKey(ProviderKeyPath);