1 write to StepId
Aspire.Hosting (1)
Pipelines\ReportingTask.cs (1)
19
StepId
= stepId;
10 references to StepId
Aspire.Hosting (8)
Pipelines\PipelineActivityReporter.cs (8)
144
if (!_steps.TryGetValue(task.
StepId
, out var parentStep))
146
throw new InvalidOperationException($"Parent step with ID '{task.
StepId
}' does not exist.");
153
throw new InvalidOperationException($"Cannot update task '{task.Id}' because its parent step '{task.
StepId
}' is already complete.");
167
StepId = task.
StepId
,
210
if (!_steps.TryGetValue(task.
StepId
, out var parentStep))
212
throw new InvalidOperationException($"Parent step with ID '{task.
StepId
}' does not exist.");
225
throw new InvalidOperationException($"Cannot complete task '{task.Id}' because its parent step '{task.
StepId
}' is already complete.");
240
StepId = task.
StepId
,
Aspire.Hosting.Tests (2)
Publishing\PipelineActivityReporterTests.cs (1)
124
Assert.Equal(stepInternal.Id, taskInternal.
StepId
);
Publishing\PublishingExtensionsTests.cs (1)
32
Assert.Equal(stepInternal.Id, taskInternal.
StepId
);