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