9 references to _steps
Aspire.Hosting (9)
Pipelines\DistributedApplicationPipeline.cs (9)
20public bool HasSteps => _steps.Count > 0; 27if (_steps.Any(s => s.Name == name)) 49_steps.Add(step); 96if (_steps.Any(s => s.Name == step.Name)) 102_steps.Add(step); 107var allSteps = _steps.Concat(CollectStepsFromAnnotations(context)).ToList(); 342if (_steps.Count == 0) 348sb.AppendLine(CultureInfo.InvariantCulture, $"Pipeline with {_steps.Count} step(s):"); 350foreach (var step in _steps)