33 writes to Id
aspire (15)
Commands\RenderCommand.cs (15)
603Id = "provision", 615Id = "build", 627Id = "deploy-web", 640Id = "log-1", 655Id = "log-2", 670Id = "log-3", 685Id = "log-4", 700Id = "deploy-web", 715Id = "build-img", 726Id = "build-img", 741Id = "deploy-api", 752Id = "deploy-api", 767Id = "provision", 778Id = "build", 791Id = "publish-complete",
Aspire.Cli.Tests (18)
Commands\DeployCommandTests.cs (5)
530Id = "deploy-step", 543Id = "deploy-postgres", 555Id = "deploy-postgres", 569Id = "deploy-step", 582Id = "publish-complete",
Commands\DestroyCommandTests.cs (4)
340Id = "destroy-step", 352Id = "destroy-compose", 364Id = "destroy-compose", 378Id = "publish-complete",
Commands\PublishCommandPromptingIntegrationTests.cs (1)
1056Id = prompt.PromptId,
TestServices\TestAppHostCliBackchannel.cs (8)
143Id = "root-step", 154Id = "child-task-1", 165Id = "child-task-1", 176Id = "child-task-2", 187Id = "child-task-2", 198Id = "child-task-2", 209Id = "child-task-2", 220Id = "root-step",
16 references to Id
aspire (15)
Commands\PipelineCommandBase.cs (15)
732if (!steps.TryGetValue(activity.Data.Id, out var stepStatus)) 737steps[activity.Data.Id] = activity.Data.CompletionState; 745InteractionService.DisplaySubtleMessage($"[[DEBUG]] Step {activity.Data.Id}: {status} - {statusText}", allowMarkup: true); 746steps[activity.Data.Id] = activity.Data.CompletionState; 778InteractionService.DisplaySubtleMessage($"[[DEBUG]] Task {activity.Data.Id} ({stepId}): {status} - {statusText}", allowMarkup: true); 788InteractionService.DisplaySubtleMessage($"[[DEBUG]] Task {activity.Data.Id} ({stepId}): {statusText}", allowMarkup: true); 830if (!steps.TryGetValue(activity.Data.Id, out var stepInfo)) 835Id = activity.Data.Id, 844steps[activity.Data.Id] = stepInfo; 913throw new InvalidOperationException($"Step '{stepId}' not found for task '{activity.Data.Id}'"); 918if (!tasks.TryGetValue(activity.Data.Id, out var task)) 923Id = activity.Data.Id, 929tasks[activity.Data.Id] = task; 1104result = await HandleSingleInputAsync(input, promptText, backchannel, activity.Data.Id, cancellationToken); 1119await backchannel.CompletePromptResponseAsync(activity.Data.Id, answers, cancellationToken);
Aspire.Cli.Tests (1)
Backchannel\BackchannelJsonSerializerContextTests.cs (1)
83Assert.Equal("step-1", activity.Data.Id);