3 instantiations of NotFound
aspire (3)
Acquisition\InstallationDiscovery.cs (1)
206
: new InstallSidecarReadResult.
NotFound
(string.Empty);
Acquisition\InstallSidecarReader.cs (2)
48
return new InstallSidecarReadResult.
NotFound
(string.Empty);
55
return new InstallSidecarReadResult.
NotFound
(sidecarPath);
8 references to NotFound
aspire (2)
Acquisition\IInstallSidecarReader.cs (1)
76
/// <see cref="
NotFound
"/>.
Acquisition\InstallationDiscovery.cs (1)
425
InstallSidecarReadResult.
NotFound
=> $"No install-route sidecar found at {result.SidecarPath}; peer was not probed.",
Aspire.Cli.Tests (6)
Acquisition\InstallSidecarReaderTests.cs (6)
50
var
notFound = Assert.IsType<InstallSidecarReadResult.
NotFound
>(result);
59
var
empty = Assert.IsType<InstallSidecarReadResult.
NotFound
>(reader.TryRead(string.Empty));
62
var
nullResult = Assert.IsType<InstallSidecarReadResult.
NotFound
>(reader.TryRead(null!));