2 instantiations of SettingsStore
Microsoft.TemplateEngine.Edge (2)
Settings\SettingsStore.cs (2)
89
return new
SettingsStore
(null);
107
settingsStore = new
SettingsStore
(parsed);
34 references to SettingsStore
Microsoft.TemplateEngine.Edge (34)
_generated\10\SettingsStoreJsonSerializerContext.SettingsStore.g.cs (28)
13
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.TemplateEngine.Edge.Settings.
SettingsStore
>? _SettingsStore;
19
public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.TemplateEngine.Edge.Settings.
SettingsStore
> SettingsStore
22
get => _SettingsStore ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.TemplateEngine.Edge.Settings.
SettingsStore
>)Options.GetTypeInfo(typeof(global::Microsoft.TemplateEngine.Edge.Settings.
SettingsStore
));
25
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.TemplateEngine.Edge.Settings.
SettingsStore
> Create_SettingsStore(global::System.Text.Json.JsonSerializerOptions options)
27
if (!TryGetTypeInfoForRuntimeCustomConverter<global::Microsoft.TemplateEngine.Edge.Settings.
SettingsStore
>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.TemplateEngine.Edge.Settings.
SettingsStore
> jsonTypeInfo))
29
var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::Microsoft.TemplateEngine.Edge.Settings.
SettingsStore
>
39
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateObjectInfo<global::Microsoft.TemplateEngine.Edge.Settings.
SettingsStore
>(options, objectInfo);
56
DeclaringType = typeof(global::Microsoft.TemplateEngine.Edge.Settings.
SettingsStore
),
58
Getter = static obj => ((global::Microsoft.TemplateEngine.Edge.Settings.
SettingsStore
)obj).ComponentGuidToAssemblyQualifiedName,
59
Setter = static (obj, value) => __set_SettingsStore_ComponentGuidToAssemblyQualifiedName((global::Microsoft.TemplateEngine.Edge.Settings.
SettingsStore
)obj, value!),
66
AttributeProviderFactory = static () => typeof(global::Microsoft.TemplateEngine.Edge.Settings.
SettingsStore
).GetProperty("ComponentGuidToAssemblyQualifiedName", InstanceMemberBindingFlags, null, typeof(global::System.Collections.Generic.Dictionary<string, string>), global::System.Array.Empty<global::System.Type>(), null),
77
DeclaringType = typeof(global::Microsoft.TemplateEngine.Edge.Settings.
SettingsStore
),
79
Getter = static obj => ((global::Microsoft.TemplateEngine.Edge.Settings.
SettingsStore
)obj).ProbingPaths,
80
Setter = static (obj, value) => __set_SettingsStore_ProbingPaths((global::Microsoft.TemplateEngine.Edge.Settings.
SettingsStore
)obj, value!),
87
AttributeProviderFactory = static () => typeof(global::Microsoft.TemplateEngine.Edge.Settings.
SettingsStore
).GetProperty("ProbingPaths", InstanceMemberBindingFlags, null, typeof(global::System.Collections.Generic.HashSet<string>), global::System.Array.Empty<global::System.Type>(), null),
98
DeclaringType = typeof(global::Microsoft.TemplateEngine.Edge.Settings.
SettingsStore
),
100
Getter = static obj => ((global::Microsoft.TemplateEngine.Edge.Settings.
SettingsStore
)obj).ComponentTypeToGuidList,
101
Setter = static (obj, value) => __set_SettingsStore_ComponentTypeToGuidList((global::Microsoft.TemplateEngine.Edge.Settings.
SettingsStore
)obj, value!),
108
AttributeProviderFactory = static () => typeof(global::Microsoft.TemplateEngine.Edge.Settings.
SettingsStore
).GetProperty("ComponentTypeToGuidList", InstanceMemberBindingFlags, null, typeof(global::System.Collections.Generic.Dictionary<string, global::System.Collections.Generic.HashSet<global::System.Guid>>), global::System.Array.Empty<global::System.Type>(), null),
119
private void SettingsStoreSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.TemplateEngine.Edge.Settings.
SettingsStore
? value)
129
global::System.Collections.Generic.Dictionary<string, string> __value_ComponentGuidToAssemblyQualifiedName = ((global::Microsoft.TemplateEngine.Edge.Settings.
SettingsStore
)value).ComponentGuidToAssemblyQualifiedName;
135
global::System.Collections.Generic.HashSet<string> __value_ProbingPaths = ((global::Microsoft.TemplateEngine.Edge.Settings.
SettingsStore
)value).ProbingPaths;
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;
152
private static extern void __set_SettingsStore_ComponentGuidToAssemblyQualifiedName(global::Microsoft.TemplateEngine.Edge.Settings.
SettingsStore
obj, global::System.Collections.Generic.Dictionary<string, string> value);
154
private static extern void __set_SettingsStore_ProbingPaths(global::Microsoft.TemplateEngine.Edge.Settings.
SettingsStore
obj, global::System.Collections.Generic.HashSet<string> value);
156
private static extern void __set_SettingsStore_ComponentTypeToGuidList(global::Microsoft.TemplateEngine.Edge.Settings.
SettingsStore
obj, global::System.Collections.Generic.Dictionary<string, global::System.Collections.Generic.HashSet<global::System.Guid>> value);
_generated\18\SettingsStoreJsonSerializerContext.GetJsonTypeInfo.g.cs (1)
22
if (type == typeof(global::Microsoft.TemplateEngine.Edge.Settings.
SettingsStore
))
Settings\ComponentManager.cs (2)
20
private readonly
SettingsStore
_settings;
31
_settings =
SettingsStore
.Load(engineEnvironmentSettings, _paths);
Settings\SettingsStore.cs (2)
85
internal static
SettingsStore
Load(IEngineEnvironmentSettings engineEnvironmentSettings, SettingsFilePaths paths)
104
SettingsStore
settingsStore;
Settings\SettingsStoreJsonSerializerContext.cs (1)
9
[JsonSerializable(typeof(
SettingsStore
))]