1 write to DependentsKeyPath
Microsoft.DotNet.Cli.Utils (1)
DependencyProvider.cs (1)
107DependentsKeyPath = $@"{ProviderKeyPath}\Dependents";
4 references to DependentsKeyPath
Microsoft.DotNet.Cli.Utils (3)
DependencyProvider.cs (3)
127using RegistryKey dependentsKey = BaseKey.CreateSubKey(Path.Combine(DependentsKeyPath, dependent), writable: true); 149using RegistryKey? dependentsKey = BaseKey.OpenSubKey(DependentsKeyPath, writable: true); 165using RegistryKey? dependentsKey = BaseKey.OpenSubKey(DependentsKeyPath);
Microsoft.DotNet.Cli.Utils.Tests (1)
DependencyProviderTests.cs (1)
20Assert.Equal(expectedDependentsKeyPath, dep.DependentsKeyPath);