5 references to FilePathComparer
Microsoft.CodeAnalysis.Features (1)
EditAndContinue\EditSession.cs (1)
857
var changedDocumentsStaleness = new Dictionary<string, bool>(SolutionState.
FilePathComparer
);
Microsoft.CodeAnalysis.Workspaces (4)
Workspace\IsolatedAnalyzerReferenceSet.Core.cs (1)
29
private static readonly ObjectPool<Dictionary<string, Guid>> s_pathToMvidMapPool = new(() => new(SolutionState.
FilePathComparer
));
Workspace\Solution\SolutionState.cs (1)
64
private readonly ConcurrentDictionary<string, ImmutableArray<DocumentId>> _lazyFilePathToRelatedDocumentIds = new ConcurrentDictionary<string, ImmutableArray<DocumentId>>(
FilePathComparer
);
Workspace\Solution\TextDocumentStates.cs (2)
40
private static readonly ObjectPool<Dictionary<string, OneOrMany<DocumentId>>> s_filePathPool = new(() => new(SolutionState.
FilePathComparer
));
374
return result.ToFrozenDictionary(SolutionState.
FilePathComparer
);