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;
140
public bool TryGetProjectGuidByAbsolutePath(string projectFullPath, [NotNullWhen(true)] out string? projectGuid) =>
_cachedProjectGuidsByAbsolutePath
.TryGetValue(projectFullPath, out projectGuid);