6 references to DependenciesKeyRelativePath
Microsoft.DotNet.Cli.Utils (3)
DependencyProvider.cs (3)
106
ProviderKeyPath = $@"{
DependenciesKeyRelativePath
}\{ProviderKeyName}";
154
using RegistryKey? providerKey = BaseKey.OpenSubKey(
DependenciesKeyRelativePath
, writable: true);
186
using RegistryKey? dependenciesKey = baseKey.OpenSubKey(
DependenciesKeyRelativePath
);
Microsoft.DotNet.Cli.Utils.Tests (3)
DependencyProviderTests.cs (3)
97
using RegistryKey providerKey = Registry.CurrentUser.CreateSubKey(Path.Combine(DependencyProvider.
DependenciesKeyRelativePath
, providerKeyName), writable: true);
114
using RegistryKey providerKey = Registry.CurrentUser.CreateSubKey(Path.Combine(DependencyProvider.
DependenciesKeyRelativePath
, providerKeyName), writable: true);
130
using RegistryKey providerKey = dep.BaseKey.OpenSubKey(DependencyProvider.
DependenciesKeyRelativePath
, writable: true);