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