1 write to _cachedProjectGuidsByAbsolutePath
Microsoft.Build (1)
SolutionConfiguration.cs (1)
54_cachedProjectGuidsByAbsolutePath = new Dictionary<string, string>(projectConfigurationCount, StringComparer.OrdinalIgnoreCase);
2 references to _cachedProjectGuidsByAbsolutePath
Microsoft.Build (2)
SolutionConfiguration.cs (2)
78_cachedProjectGuidsByAbsolutePath[projectAbsolutePath] = projectGuid; 140public bool TryGetProjectGuidByAbsolutePath(string projectFullPath, [NotNullWhen(true)] out string? projectGuid) => _cachedProjectGuidsByAbsolutePath.TryGetValue(projectFullPath, out projectGuid);