11 references to FileSystemPath
aspire (10)
Backchannel\AuxiliaryBackchannelMonitor.cs (5)
41private readonly ConcurrentDictionary<string, AppHostAuxiliaryBackchannel> _connectionsBySocketPath = new(StringComparers.FileSystemPath); 45private readonly HashSet<string> _knownSocketPaths = new(StringComparers.FileSystemPath); 49private readonly ConcurrentDictionary<string, UnreachableSocket> _unreachableSockets = new(StringComparers.FileSystemPath); 374var currentSocketPaths = currentSockets.Select(socket => socket.SocketPath).ToHashSet(StringComparers.FileSystemPath); 389var removedFiles = _knownSocketPaths.Except(currentSocketPaths, StringComparers.FileSystemPath).ToList();
Commands\AppHostLauncher.cs (1)
727return StringComparers.FileSystemPath.Equals(
Commands\StopCommand.cs (1)
300StringComparers.FileSystemPath.Equals(
src\Shared\AppHostSocketManager.cs (2)
117.Distinct(StringComparers.FileSystemPath); 209foreach (var socketPath in socketPaths.Distinct(StringComparers.FileSystemPath))
src\Shared\BackchannelConstants.cs (1)
343return results.Distinct(StringComparers.FileSystemPath).ToArray();
Aspire.Cli.Tests (1)
TestServices\TestAuxiliaryBackchannelMonitor.cs (1)
13private readonly ConcurrentDictionary<string, IAppHostAuxiliaryBackchannel> _connectionsBySocketPath = new(StringComparers.FileSystemPath);