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