1 write to StepId
Aspire.Hosting (1)
Publishing\PublishingActivityProgressReporter.cs (1)
182StepId = stepId;
10 references to StepId
Aspire.Hosting (8)
Publishing\PublishingActivityProgressReporter.cs (8)
467if (!_steps.TryGetValue(task.StepId, out var parentStep)) 469throw new InvalidOperationException($"Parent step with ID '{task.StepId}' does not exist."); 476throw new InvalidOperationException($"Cannot update task '{task.Id}' because its parent step '{task.StepId}' is already complete."); 490StepId = task.StepId 499if (!_steps.TryGetValue(task.StepId, out var parentStep)) 501throw new InvalidOperationException($"Parent step with ID '{task.StepId}' does not exist."); 513throw new InvalidOperationException($"Cannot complete task '{task.Id}' because its parent step '{task.StepId}' is already complete."); 528StepId = task.StepId,
Aspire.Hosting.Tests (2)
Publishing\NullPublishingActivityProgressReporterTests.cs (1)
35Assert.Equal(step.Id, task.StepId);
Publishing\PublishingExtensionsTests.cs (1)
56Assert.Equal(step.Id, task.StepId);