1 write to BaseKey
Microsoft.DotNet.Cli.Utils (1)
DependencyProvider.cs (1)
105
BaseKey
= 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
"/>.
127
using RegistryKey dependentsKey =
BaseKey
.CreateSubKey(Path.Combine(DependentsKeyPath, dependent), writable: true);
149
using RegistryKey? dependentsKey =
BaseKey
.OpenSubKey(DependentsKeyPath, writable: true);
154
using RegistryKey? providerKey =
BaseKey
.OpenSubKey(DependenciesKeyRelativePath, writable: true);
165
using RegistryKey? dependentsKey =
BaseKey
.OpenSubKey(DependentsKeyPath);
177
using RegistryKey? providerKey =
BaseKey
.OpenSubKey(ProviderKeyPath);