1 write to _cachedProjectElementsByAbsolutePath
Microsoft.Build (1)
SolutionConfiguration.cs (1)
52
_cachedProjectElementsByAbsolutePath
= new Dictionary<string, XmlElement>(projectConfigurationCount, StringComparer.OrdinalIgnoreCase);
2 references to _cachedProjectElementsByAbsolutePath
Microsoft.Build (2)
SolutionConfiguration.cs (2)
76
_cachedProjectElementsByAbsolutePath
[projectAbsolutePath] = xmlElement;
138
public bool TryGetProjectByAbsolutePath(string projectFullPath, [NotNullWhen(true)] out XmlElement? projectElement) =>
_cachedProjectElementsByAbsolutePath
.TryGetValue(projectFullPath, out projectElement);