7 writes to Children
Microsoft.NET.Sdk.StaticWebAssets.Tasks (6)
GenerateStaticWebAssetsDevelopmentManifest.cs (6)
193currentNode.Children ??= new Dictionary<string, StaticWebAssetNode>(StringComparer.Ordinal); 202currentNode.Children ??= new Dictionary<string, StaticWebAssetNode>(StringComparer.Ordinal); 211Children = new Dictionary<string, StaticWebAssetNode>(StringComparer.Ordinal) 266currentNode.Children ??= new Dictionary<string, StaticWebAssetNode>(StringComparer.Ordinal); 284currentNode.Children ??= new Dictionary<string, StaticWebAssetNode>(StringComparer.Ordinal); 293Children = new Dictionary<string, StaticWebAssetNode>(StringComparer.Ordinal)
Microsoft.NET.Sdk.StaticWebAssets.Tests (1)
StaticWebAssets\GenerateStaticWebAssetsDevelopmentManifestTest.cs (1)
712Children = children.Length == 0 ? null : children.ToDictionary(pair => pair.key, pair => pair.node)
7 references to Children
Microsoft.NET.Sdk.StaticWebAssets.Tasks (7)
GenerateStaticWebAssetsDevelopmentManifest.cs (7)
194currentNode.Children.Add(segment, new StaticWebAssetNode 203if (currentNode.Children.TryGetValue(segment, out var existing)) 213currentNode.Children.Add(segment, newNode); 267if (!currentNode.Children.TryGetValue(segment, out var childNode)) 273currentNode.Children.Add(segment, childNode); 285if (currentNode.Children.TryGetValue(segment, out var existing)) 295currentNode.Children.Add(segment, newNode);