11 references to Comparer
Microsoft.CodeAnalysis.Features (2)
CodeRefactorings\SyncNamespace\AbstractSyncNamespaceCodeRefactoringProvider.MoveFileCodeAction.cs (2)
100.ToImmutableDictionary(t => t.foldername, t => t.index, PathUtilities.Comparer); 123if (builder.All(folders => !folders.SequenceEqual(defaultPathBasedOnCurrentFolder, PathUtilities.Comparer)))
Microsoft.CodeAnalysis.Workspaces (2)
AnalyzerAssemblyLoader.cs (1)
79paths = ImmutableHashSet.Create(PathUtilities.Comparer, fullPath);
Diagnostics\DocumentAnalysisScope.cs (1)
54return TextDocument.Project.AnalyzerOptions.AdditionalFiles.First(a => PathUtilities.Comparer.Equals(a.Path, filePath));
Microsoft.CodeAnalysis.Workspaces.MSBuild (7)
MSBuild\MSBuildProjectLoader.Worker.cs (3)
103_pathToDiscoveredProjectInfosMap = new Dictionary<string, ImmutableArray<ProjectInfo>>(PathUtilities.Comparer); 133var processedPaths = new HashSet<string>(PathUtilities.Comparer); 487var paths = new HashSet<string>(PathUtilities.Comparer);
MSBuild\MSBuildProjectLoader.Worker_ResolveReferences.cs (1)
68var builder = ImmutableDictionary.CreateBuilder<string, HashSet<int>>(PathUtilities.Comparer);
MSBuild\ProjectMap.cs (3)
44_projectPathToProjectIdsMap = new Dictionary<string, HashSet<ProjectId>>(PathUtilities.Comparer); 45_projectPathToProjectInfosMap = new Dictionary<string, ImmutableArray<ProjectInfo>>(PathUtilities.Comparer); 175if (PathUtilities.Comparer.Equals(p, path))