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;
117
public ICollection<XmlElement> ProjectConfigurations =>
_cachedProjectElements
.Values;
136
public bool TryGetProjectByGuid(string projectGuid, [NotNullWhen(true)] out XmlElement? projectElement) =>
_cachedProjectElements
.TryGetValue(projectGuid, out projectElement);