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