7 references to Names
dotnet-watch (7)
CommandLine\EnvironmentVariables.cs (1)
39public static bool SuppressBrowserRefresh => ReadBool(Names.SuppressBrowserRefresh);
HotReload\AppModels\WebApplicationAppModel.cs (1)
74logger.Log(MessageDescriptor.SkippingConfiguringBrowserRefresh_SuppressedViaEnvironmentVariable.WithSeverityWhen(MessageSeverity.Error, RequiresBrowserRefresh), EnvironmentVariables.Names.SuppressBrowserRefresh);
Process\ProjectLauncher.cs (3)
88environmentBuilder[EnvironmentVariables.Names.DotnetWatch] = "1"; 89environmentBuilder[EnvironmentVariables.Names.DotnetWatchIteration] = (Iteration + 1).ToString(CultureInfo.InvariantCulture); 93environmentBuilder[EnvironmentVariables.Names.HotReloadDeltaClientLogMessages] =
Watch\DotNetWatcher.cs (2)
60[EnvironmentVariables.Names.DotnetWatch] = "1", 61[EnvironmentVariables.Names.DotnetWatchIteration] = (iteration + 1).ToString(CultureInfo.InvariantCulture),