16 instantiations of AssetNode
Aspire.Hosting.Blazor (3)
Manifests\DevelopmentManifest.cs (1)
22
public AssetNode Root { get; set; } =
new
();
Manifests\EndpointsManifestTransformer.cs (2)
111
mergedChildren[prefix] = new
AssetNode
{ Children = appChildren };
120
Root = new
AssetNode
{ Children = mergedChildren }
Aspire.Hosting.Blazor.Tests (13)
EndpointsManifestTransformerTests.cs (13)
136
Root = new
AssetNode
140
["css"] = new
AssetNode
144
["app.css"] = new
AssetNode
157
Root = new
AssetNode
161
["js"] = new
AssetNode
165
["app.js"] = new
AssetNode
217
Root = new
AssetNode
221
["file1"] = new
AssetNode
{ Asset = new AssetMatch { ContentRootIndex = 0 } },
222
["file2"] = new
AssetNode
{ Asset = new AssetMatch { ContentRootIndex = 1 } }
230
Root = new
AssetNode
234
["file3"] = new
AssetNode
{ Asset = new AssetMatch { ContentRootIndex = 0 } }
271
var node = new
AssetNode
277
["child"] = new
AssetNode
12 references to AssetNode
Aspire.Hosting.Blazor (4)
Manifests\DevelopmentManifest.cs (3)
22
public
AssetNode
Root { get; set; } = new();
30
public Dictionary<string,
AssetNode
>? Children { get; set; }
56
foreach (
var
child in Children.Values)
Manifests\EndpointsManifestTransformer.cs (1)
80
var mergedChildren = new Dictionary<string,
AssetNode
>();
Aspire.Hosting.Blazor.Tests (8)
EndpointsManifestTransformerTests.cs (8)
138
Children = new Dictionary<string,
AssetNode
>
142
Children = new Dictionary<string,
AssetNode
>
159
Children = new Dictionary<string,
AssetNode
>
163
Children = new Dictionary<string,
AssetNode
>
219
Children = new Dictionary<string,
AssetNode
>
232
Children = new Dictionary<string,
AssetNode
>
271
var
node = new AssetNode
275
Children = new Dictionary<string,
AssetNode
>