8 writes to Progress
Aspire.Hosting (1)
ResourceBuilderExtensions.cs (1)
3022target.Progress = source.Progress;
Aspire.Hosting.Foundry (2)
HostedAgent\HostedAgentBuilderExtension.cs (1)
319Progress = new() { Message = "Sending message to agent..." },
PromptAgent\PromptAgentBuilderExtensions.cs (1)
112Progress = new() { Message = "Sending message to agent..." },
Aspire.Hosting.Tests (4)
ResourceCommandServiceTests.cs (4)
1744Progress = new CommandProgressOptions { Message = "Processing...", Title = "Cancelable Command" } 1798Progress = new CommandProgressOptions { Message = "Processing..." } 1839Progress = new CommandProgressOptions { Message = "Working..." } 1870Progress = new CommandProgressOptions { Message = "Processing..." }
Stress.AppHost (1)
InteractionCommands.cs (1)
982Progress = new CommandProgressOptions
2 references to Progress
Aspire.Hosting (2)
ResourceBuilderExtensions.cs (2)
2935return builder.WithAnnotation(new ResourceCommandAnnotation(name, displayName, commandOptions.UpdateState ?? (c => ResourceCommandState.Enabled), executeCommand, commandOptions.Description, commandOptions.Parameter, commandOptions.Arguments, commandOptions.ConfirmationMessage, commandOptions.IconName, commandOptions.IconVariant, commandOptions.IsHighlighted, commandOptions.Visibility, commandOptions.ValidateArguments, commandOptions.Progress)); 3022target.Progress = source.Progress;