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