1 write to StepId
Aspire.Hosting (1)
Pipelines\ReportingTask.cs (1)
19StepId = stepId;
10 references to StepId
Aspire.Hosting (8)
Pipelines\PipelineActivityReporter.cs (8)
131if (!_steps.TryGetValue(task.StepId, out var parentStep)) 133throw new InvalidOperationException($"Parent step with ID '{task.StepId}' does not exist."); 140throw new InvalidOperationException($"Cannot update task '{task.Id}' because its parent step '{task.StepId}' is already complete."); 154StepId = task.StepId, 197if (!_steps.TryGetValue(task.StepId, out var parentStep)) 199throw new InvalidOperationException($"Parent step with ID '{task.StepId}' does not exist."); 212throw new InvalidOperationException($"Cannot complete task '{task.Id}' because its parent step '{task.StepId}' is already complete."); 227StepId = task.StepId,
Aspire.Hosting.Tests (2)
Publishing\PipelineActivityReporterTests.cs (1)
74Assert.Equal(stepInternal.Id, taskInternal.StepId);
Publishing\PublishingExtensionsTests.cs (1)
30Assert.Equal(stepInternal.Id, taskInternal.StepId);