9 references to OSSpecificPathComparer
dotnet-watch (9)
Build\EvaluationResult.cs (1)
24.ToHashSet(PathUtilities.OSSpecificPathComparer);
Build\FilePathExclusions.cs (1)
18var outputDirectories = new HashSet<string>(PathUtilities.OSSpecificPathComparer);
FileWatcher\FileWatcher.cs (3)
14protected readonly Dictionary<string, DirectoryWatcher> _directoryTreeWatchers = new(PathUtilities.OSSpecificPathComparer); 18protected readonly Dictionary<string, DirectoryWatcher> _directoryWatchers = new(PathUtilities.OSSpecificPathComparer); 77select (g.Key, containingDirectories ? [] : g.Select(path => Path.GetFileName(path)).ToImmutableHashSet(PathUtilities.OSSpecificPathComparer));
FileWatcher\PollingDirectoryWatcher.cs (3)
16private Dictionary<string, DateTime> _currentSnapshot = new(PathUtilities.OSSpecificPathComparer); 19private Dictionary<string, DateTime> _snapshotBuilder = new(PathUtilities.OSSpecificPathComparer); 20private readonly Dictionary<string, ChangeKind> _changesBuilder = new(PathUtilities.OSSpecificPathComparer);
HotReload\HotReloadDotNetWatcher.cs (1)
572var projectPathSet = projectPaths.ToImmutableHashSet(PathUtilities.OSSpecificPathComparer);