1 write to _options
Microsoft.AspNetCore.SpaProxy (1)
SpaProxyLaunchManager.cs (1)
28_options = options.Value;
15 references to _options
Microsoft.AspNetCore.SpaProxy (15)
SpaProxyLaunchManager.cs (15)
47_logger.LogInformation($"No SPA development server running at {_options.ServerUrl} found."); 81var response = await httpClient.GetAsync(_options.ServerUrl, cancellationTokenSource.Token); 112var response = await httpClient.GetAsync(_options.ServerUrl, cancellationTokenSource.Token); 145maxTimeoutReached = sw.Elapsed >= _options.MaxTimeout; 153_logger.LogError($"Couldn't start the SPA development server with command '{_options.LaunchCommand}'."); 160_logger.LogError($"Unable to connect to the SPA development server at '{_options.ServerUrl}'."); 165_logger.LogInformation($"SPA development server running at '{_options.ServerUrl}'"); 175var space = _options.LaunchCommand.IndexOf(' '); 176var command = _options.LaunchCommand[0..space]; 177var arguments = _options.LaunchCommand[++space..]; 197WorkingDirectory = Path.Combine(AppContext.BaseDirectory, _options.WorkingDirectory) 200if (_spaProcess != null && !_spaProcess.HasExited && !_options.KeepRunning) 214_logger.LogError(exception, $"Failed to launch the SPA development server '{_options.LaunchCommand}'."); 243WorkingDirectory = Path.Combine(AppContext.BaseDirectory, _options.WorkingDirectory) 305WorkingDirectory = Path.Combine(AppContext.BaseDirectory, _options.WorkingDirectory)