7 references to PathComparer
Microsoft.NET.ProjectData (7)
Donor\ProjectDataDonorIndex.Git.cs (1)
82
if (!
PathComparer
.Equals(gitDirectory, commonGitDirectory))
Donor\ProjectDataDonorIndex.Reader.cs (2)
14
private static readonly ConcurrentDictionary<string, SelectionCacheEntry> SelectionCache = new(
PathComparer
);
15
private static readonly ConcurrentDictionary<string, WorkspaceMetadataCacheEntry> WorkspaceMetadataCache = new(
PathComparer
);
Donor\ProjectDataDonorIndex.Selection.cs (3)
214
if (!
PathComparer
.Equals(key, retainedKey) &&
337
HashSet<string> seen = new(refined.Select(static entry => NormalizePath(entry.Path)),
PathComparer
);
381
HashSet<string> seen = new(
PathComparer
);
Donor\ProjectDataDonorOptions.cs (1)
45
ConcurrentDictionary<string, byte> created = new(ProjectDataDonorIndex.
PathComparer
);