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