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