1 write to StepId
Aspire.Hosting (1)
Pipelines\ReportingTask.cs (1)
19StepId = stepId;
10 references to StepId
Aspire.Hosting (8)
Pipelines\PipelineActivityReporter.cs (8)
129if (!_steps.TryGetValue(task.StepId, out var parentStep)) 131throw new InvalidOperationException($"Parent step with ID '{task.StepId}' does not exist."); 138throw new InvalidOperationException($"Cannot update task '{task.Id}' because its parent step '{task.StepId}' is already complete."); 152StepId = task.StepId 161if (!_steps.TryGetValue(task.StepId, out var parentStep)) 163throw new InvalidOperationException($"Parent step with ID '{task.StepId}' does not exist."); 175throw new InvalidOperationException($"Cannot complete task '{task.Id}' because its parent step '{task.StepId}' is already complete."); 190StepId = task.StepId,
Aspire.Hosting.Tests (2)
Publishing\PipelineActivityReporterTests.cs (1)
73Assert.Equal(stepInternal.Id, taskInternal.StepId);
Publishing\PublishingExtensionsTests.cs (1)
29Assert.Equal(stepInternal.Id, taskInternal.StepId);