2 instantiations of HotReloadDotNetWatcher
dotnet-watch (1)
Program.cs (1)
200var watcher = new HotReloadDotNetWatcher(context, console, runtimeProcessLauncherFactory: null);
dotnet-watch.Tests (1)
HotReload\RuntimeProcessLauncherTests.cs (1)
120var watcher = new HotReloadDotNetWatcher(context, console, runtimeProcessLauncherFactory: factory);
10 references to HotReloadDotNetWatcher
dotnet-watch (7)
HotReload\HotReloadDotNetWatcher.cs (2)
15public const string ClientLogComponentName = $"{nameof(HotReloadDotNetWatcher)}:Client"; 16public const string AgentLogComponentName = $"{nameof(HotReloadDotNetWatcher)}:Agent";
Process\ProjectLauncher.cs (2)
53var clientLogger = context.LoggerFactory.CreateLogger(HotReloadDotNetWatcher.ClientLogComponentName, projectDisplayName); 54var agentLogger = context.LoggerFactory.CreateLogger(HotReloadDotNetWatcher.AgentLogComponentName, projectDisplayName);
Program.cs (1)
200var watcher = new HotReloadDotNetWatcher(context, console, runtimeProcessLauncherFactory: null);
UI\IReporter.cs (2)
175.Add(HotReloadDotNetWatcher.ClientLogComponentName, Emoji.HotReload) 176.Add(HotReloadDotNetWatcher.AgentLogComponentName, Emoji.Agent)
dotnet-watch.Tests (3)
HotReload\HotReloadDotNetWatcherTests.cs (1)
36var normalized = HotReloadDotNetWatcher.NormalizePathChanges(changes.Select(kind => new ChangedPath("a.html", kind)));
HotReload\RuntimeProcessLauncherTests.cs (2)
21HotReloadDotNetWatcher Watcher, 120var watcher = new HotReloadDotNetWatcher(context, console, runtimeProcessLauncherFactory: factory);