10 references to ComponentTypeToGuidList
Microsoft.TemplateEngine.Edge (10)
_generated\10\SettingsStoreJsonSerializerContext.SettingsStore.g.cs (2)
100Getter = static obj => ((global::Microsoft.TemplateEngine.Edge.Settings.SettingsStore)obj).ComponentTypeToGuidList, 141global::System.Collections.Generic.Dictionary<string, global::System.Collections.Generic.HashSet<global::System.Guid>> __value_ComponentTypeToGuidList = ((global::Microsoft.TemplateEngine.Edge.Settings.SettingsStore)value).ComponentTypeToGuidList;
Settings\ComponentManager.cs (6)
42foreach (KeyValuePair<string, HashSet<Guid>> bucket in _settings.ComponentTypeToGuidList) 74if (_settings.ComponentTypeToGuidList.TryGetValue(typeof(T).AssemblyQualifiedName, out ids)) 227if (_settings.ComponentTypeToGuidList.TryGetValue(interfaceType.FullName, out HashSet<Guid> idsFromOldStyleKey)) 229_settings.ComponentTypeToGuidList.Remove(interfaceType.FullName); 232if (!_settings.ComponentTypeToGuidList.TryGetValue(interfaceType.AssemblyQualifiedName, out HashSet<Guid> idsForInterfaceTypeForSettings)) 234_settings.ComponentTypeToGuidList[interfaceType.AssemblyQualifiedName] = idsForInterfaceTypeForSettings = new HashSet<Guid>();
Settings\SettingsStore.cs (2)
49if (obj.TryGetValueCaseInsensitive(nameof(ComponentTypeToGuidList), out JsonNode? componentTypeToGuidListToken)) 58ComponentTypeToGuidList[entry.Key] = set;