1 write to _cachedProjectElements
Microsoft.Build (1)
SolutionConfiguration.cs (1)
51_cachedProjectElements = new Dictionary<string, XmlElement>(projectConfigurationCount, StringComparer.OrdinalIgnoreCase);
3 references to _cachedProjectElements
Microsoft.Build (3)
SolutionConfiguration.cs (3)
73_cachedProjectElements[projectGuid] = xmlElement; 117public ICollection<XmlElement> ProjectConfigurations => _cachedProjectElements.Values; 136public bool TryGetProjectByGuid(string projectGuid, [NotNullWhen(true)] out XmlElement? projectElement) => _cachedProjectElements.TryGetValue(projectGuid, out projectElement);