11 references to Comparer
Microsoft.CodeAnalysis.Features (2)
CodeRefactorings\SyncNamespace\AbstractSyncNamespaceCodeRefactoringProvider.MoveFileCodeAction.cs (2)
100
.ToImmutableDictionary(t => t.foldername, t => t.index, PathUtilities.
Comparer
);
123
if (builder.All(folders => !folders.SequenceEqual(defaultPathBasedOnCurrentFolder, PathUtilities.
Comparer
)))
Microsoft.CodeAnalysis.Workspaces (2)
AnalyzerAssemblyLoader.cs (1)
79
paths = ImmutableHashSet.Create(PathUtilities.
Comparer
, fullPath);
Diagnostics\DocumentAnalysisScope.cs (1)
54
return 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
);
133
var processedPaths = new HashSet<string>(PathUtilities.
Comparer
);
487
var paths = new HashSet<string>(PathUtilities.
Comparer
);
MSBuild\MSBuildProjectLoader.Worker_ResolveReferences.cs (1)
68
var 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
);
175
if (PathUtilities.
Comparer
.Equals(p, path))