1 write to Id
Aspire.Hosting (1)
Publishing\PublishingActivityProgressReporter.cs (1)
53Id = id;
11 references to Id
Aspire.Hosting (9)
Publishing\NullPublishingActivityProgressReporter.cs (1)
36var task = new PublishingTask(Guid.NewGuid().ToString(), step.Id, statusText, step)
Publishing\PublishingActivityProgressReporter.cs (8)
385_steps.TryAdd(step.Id, step); 392Id = step.Id, 405if (!_steps.TryGetValue(step.Id, out var parentStep)) 407throw new InvalidOperationException($"Step with ID '{step.Id}' does not exist."); 414throw new InvalidOperationException($"Cannot create task for step '{step.Id}' because the step is already complete."); 418var task = new PublishingTask(Guid.NewGuid().ToString(), step.Id, statusText, parentStep) 434StepId = step.Id 455Id = step.Id,
Aspire.Hosting.Tests (2)
Publishing\NullPublishingActivityProgressReporterTests.cs (1)
35Assert.Equal(step.Id, task.StepId);
Publishing\PublishingExtensionsTests.cs (1)
56Assert.Equal(step.Id, task.StepId);