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