3 implementations of IConsole
dotnet-watch (1)
UI\PhysicalConsole.cs (1)
12
internal sealed class PhysicalConsole :
IConsole
dotnet-watch.Tests (2)
ConsoleReporterTests.cs (1)
37
private class TestConsole :
IConsole
TestUtilities\TestConsole.cs (1)
8
internal class TestConsole :
IConsole
8 references to IConsole
dotnet-watch (7)
HotReload\HotReloadDotNetWatcher.cs (2)
18
private readonly
IConsole
_console;
26
public HotReloadDotNetWatcher(DotNetWatchContext context,
IConsole
console, IRuntimeProcessLauncherFactory? runtimeProcessLauncherFactory)
Program.cs (3)
13
IConsole
console,
67
private static Program? TryCreate(IReadOnlyList<string> args,
IConsole
console, EnvironmentOptions environmentOptions, bool verbose, out int errorCode)
83
internal static Program? TryCreate(CommandLineOptions options,
IConsole
console, EnvironmentOptions environmentOptions, LoggerFactory loggerFactory, IProcessOutputReporter processOutputReporter, out int errorCode)
UI\ConsoleInputReader.cs (1)
6
internal sealed class ConsoleInputReader(
IConsole
console, bool quiet, bool suppressEmojis)
UI\ConsoleReporter.cs (1)
12
internal sealed class ConsoleReporter(
IConsole
console, bool verbose, bool quiet, bool suppressEmojis) : IReporter, IProcessOutputReporter
dotnet-watch.Tests (1)
ConsoleReporterTests.cs (1)
53
event Action<ConsoleKeyInfo>
IConsole
.KeyPressed