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)
131
if (!_steps.TryGetValue(task.
StepId
, out var parentStep))
133
throw new InvalidOperationException($"Parent step with ID '{task.
StepId
}' does not exist.");
140
throw new InvalidOperationException($"Cannot update task '{task.Id}' because its parent step '{task.
StepId
}' is already complete.");
154
StepId = task.
StepId
,
197
if (!_steps.TryGetValue(task.
StepId
, out var parentStep))
199
throw new InvalidOperationException($"Parent step with ID '{task.
StepId
}' does not exist.");
212
throw new InvalidOperationException($"Cannot complete task '{task.Id}' because its parent step '{task.
StepId
}' is already complete.");
227
StepId = task.
StepId
,
Aspire.Hosting.Tests (2)
Publishing\PipelineActivityReporterTests.cs (1)
74
Assert.Equal(stepInternal.Id, taskInternal.
StepId
);
Publishing\PublishingExtensionsTests.cs (1)
30
Assert.Equal(stepInternal.Id, taskInternal.
StepId
);