2 instantiations of ImportMap
Microsoft.NET.Sdk.StaticWebAssets.Tasks (2)
_generated\45\ImportMapSerializerContext.ImportMap.g.cs (1)
32
ObjectWithParameterizedConstructorCreator = static args => new global::Microsoft.AspNetCore.StaticWebAssets.Tasks.
ImportMap
((global::System.Collections.Generic.Dictionary<string, string>)args[0], (global::System.Collections.Generic.Dictionary<string, global::System.Collections.Generic.Dictionary<string, string>>)args[1], (global::System.Collections.Generic.Dictionary<string, string>)args[2]),
OverrideHtmlAssetPlaceholders.cs (1)
260
return new
ImportMap
(imports, scopes, integrity);
30 references to ImportMap
Microsoft.NET.Sdk.StaticWebAssets.Tasks (30)
_generated\45\ImportMapSerializerContext.ImportMap.g.cs (26)
13
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.StaticWebAssets.Tasks.
ImportMap
>? _ImportMap;
19
public global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.StaticWebAssets.Tasks.
ImportMap
> ImportMap
22
get => _ImportMap ??= (global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.StaticWebAssets.Tasks.
ImportMap
>)Options.GetTypeInfo(typeof(global::Microsoft.AspNetCore.StaticWebAssets.Tasks.
ImportMap
));
25
private global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.StaticWebAssets.Tasks.
ImportMap
> Create_ImportMap(global::System.Text.Json.JsonSerializerOptions options)
27
if (!TryGetTypeInfoForRuntimeCustomConverter<global::Microsoft.AspNetCore.StaticWebAssets.Tasks.
ImportMap
>(options, out global::System.Text.Json.Serialization.Metadata.JsonTypeInfo<global::Microsoft.AspNetCore.StaticWebAssets.Tasks.
ImportMap
> jsonTypeInfo))
29
var objectInfo = new global::System.Text.Json.Serialization.Metadata.JsonObjectInfoValues<global::Microsoft.AspNetCore.StaticWebAssets.Tasks.
ImportMap
>
35
ConstructorAttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.StaticWebAssets.Tasks.
ImportMap
).GetConstructor(InstanceMemberBindingFlags, binder: null, new[] {typeof(global::System.Collections.Generic.Dictionary<string, string>), typeof(global::System.Collections.Generic.Dictionary<string, global::System.Collections.Generic.Dictionary<string, string>>), typeof(global::System.Collections.Generic.Dictionary<string, string>)}, modifiers: null),
39
jsonTypeInfo = global::System.Text.Json.Serialization.Metadata.JsonMetadataServices.CreateObjectInfo<global::Microsoft.AspNetCore.StaticWebAssets.Tasks.
ImportMap
>(options, objectInfo);
56
DeclaringType = typeof(global::Microsoft.AspNetCore.StaticWebAssets.Tasks.
ImportMap
),
58
Getter = static obj => ((global::Microsoft.AspNetCore.StaticWebAssets.Tasks.
ImportMap
)obj).Imports,
59
Setter = static (obj, value) => ((global::Microsoft.AspNetCore.StaticWebAssets.Tasks.
ImportMap
)obj).Imports = value!,
66
AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.StaticWebAssets.Tasks.
ImportMap
).GetProperty("Imports", InstanceMemberBindingFlags, null, typeof(global::System.Collections.Generic.Dictionary<string, string>), global::System.Array.Empty<global::System.Type>(), null),
78
DeclaringType = typeof(global::Microsoft.AspNetCore.StaticWebAssets.Tasks.
ImportMap
),
80
Getter = static obj => ((global::Microsoft.AspNetCore.StaticWebAssets.Tasks.
ImportMap
)obj).Scopes,
81
Setter = static (obj, value) => ((global::Microsoft.AspNetCore.StaticWebAssets.Tasks.
ImportMap
)obj).Scopes = value!,
88
AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.StaticWebAssets.Tasks.
ImportMap
).GetProperty("Scopes", InstanceMemberBindingFlags, null, typeof(global::System.Collections.Generic.Dictionary<string, global::System.Collections.Generic.Dictionary<string, string>>), global::System.Array.Empty<global::System.Type>(), null),
100
DeclaringType = typeof(global::Microsoft.AspNetCore.StaticWebAssets.Tasks.
ImportMap
),
102
Getter = static obj => ((global::Microsoft.AspNetCore.StaticWebAssets.Tasks.
ImportMap
)obj).Integrity,
103
Setter = static (obj, value) => ((global::Microsoft.AspNetCore.StaticWebAssets.Tasks.
ImportMap
)obj).Integrity = value!,
110
AttributeProviderFactory = static () => typeof(global::Microsoft.AspNetCore.StaticWebAssets.Tasks.
ImportMap
).GetProperty("Integrity", InstanceMemberBindingFlags, null, typeof(global::System.Collections.Generic.Dictionary<string, string>), global::System.Array.Empty<global::System.Type>(), null),
122
private void ImportMapSerializeHandler(global::System.Text.Json.Utf8JsonWriter writer, global::Microsoft.AspNetCore.StaticWebAssets.Tasks.
ImportMap
? value)
133
DictionaryStringStringSerializeHandler(writer, ((global::Microsoft.AspNetCore.StaticWebAssets.Tasks.
ImportMap
)value).Imports);
135
DictionaryStringDictionaryStringStringSerializeHandler(writer, ((global::Microsoft.AspNetCore.StaticWebAssets.Tasks.
ImportMap
)value).Scopes);
137
DictionaryStringStringSerializeHandler(writer, ((global::Microsoft.AspNetCore.StaticWebAssets.Tasks.
ImportMap
)value).Integrity);
_generated\50\ImportMapSerializerContext.GetJsonTypeInfo.g.cs (1)
22
if (type == typeof(global::Microsoft.AspNetCore.StaticWebAssets.Tasks.
ImportMap
))
OverrideHtmlAssetPlaceholders.cs (3)
51
var
importMap = CreateImportMapFromResources(resources);
233
private
ImportMap
CreateImportMapFromResources(List<ResourceAsset> assets)
303
[JsonSerializable(typeof(
ImportMap
))]