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