1 write to StepId
Aspire.Hosting (1)
Publishing\PublishingTask.cs (1)
19StepId = stepId;
10 references to StepId
Aspire.Hosting (8)
Publishing\PublishingActivityReporter.cs (8)
124if (!_steps.TryGetValue(task.StepId, out var parentStep)) 126throw new InvalidOperationException($"Parent step with ID '{task.StepId}' does not exist."); 133throw new InvalidOperationException($"Cannot update task '{task.Id}' because its parent step '{task.StepId}' is already complete."); 147StepId = task.StepId 156if (!_steps.TryGetValue(task.StepId, out var parentStep)) 158throw new InvalidOperationException($"Parent step with ID '{task.StepId}' does not exist."); 170throw new InvalidOperationException($"Cannot complete task '{task.Id}' because its parent step '{task.StepId}' is already complete."); 185StepId = task.StepId,
Aspire.Hosting.Tests (2)
Publishing\PublishingActivityReporterTests.cs (1)
72Assert.Equal(stepInternal.Id, taskInternal.StepId);
Publishing\PublishingExtensionsTests.cs (1)
28Assert.Equal(stepInternal.Id, taskInternal.StepId);