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; 138public bool TryGetProjectByAbsolutePath(string projectFullPath, [NotNullWhen(true)] out XmlElement? projectElement) => _cachedProjectElementsByAbsolutePath.TryGetValue(projectFullPath, out projectElement);