14 writes to Title
Aspire.Hosting (2)
ApplicationModel\ResourceCommandService.cs (1)
434Title = progressOptions.Title,
Ats\InteractionExports.cs (1)
790Title = Title,
Aspire.Hosting.Tests (7)
InteractionServiceTests.cs (7)
177() => interactionService.PromptProgressAsync("Please wait", new ProgressInteractionOptions { Title = "Working..." })).DefaultTimeout(); 1137Title = "Working...", 1159Title = "Working...", 1192Title = "Working...", 1226Title = "Working...", 1257var resultTask = interactionService.PromptProgressAsync("Please wait", new ProgressInteractionOptions { Title = "Working..." }, cancellationToken: cts.Token); 1278Title = "Working...",
Stress.AppHost (5)
InteractionCommands.cs (5)
803Title = "Downloading resources", 859new ProgressInteractionOptions { Title = "Processing" }, 883Title = "Loading", 929Title = "Deploying to Azure", 954Title = "Building container images",
8 references to Title
Aspire.Hosting (1)
InteractionService.cs (1)
302var newState = new Interaction(options.Title ?? string.Empty, message, options, new Interaction.ProgressInteractionInfo(), interactionCts.Token);
Aspire.Hosting.Azure.Tests (1)
tests\Shared\TestInteractionService.cs (1)
85var data = new InteractionData(InteractionType.Progress, options.Title ?? string.Empty, message, new InteractionInputCollection([]), options, cancellationToken, new TaskCompletionSource<object>());
Aspire.Hosting.Browsers.Tests (1)
tests\Shared\TestInteractionService.cs (1)
85var data = new InteractionData(InteractionType.Progress, options.Title ?? string.Empty, message, new InteractionInputCollection([]), options, cancellationToken, new TaskCompletionSource<object>());
Aspire.Hosting.DevTunnels.Tests (1)
tests\Shared\TestInteractionService.cs (1)
85var data = new InteractionData(InteractionType.Progress, options.Title ?? string.Empty, message, new InteractionInputCollection([]), options, cancellationToken, new TaskCompletionSource<object>());
Aspire.Hosting.RemoteHost.Tests (1)
tests\Shared\TestInteractionService.cs (1)
85var data = new InteractionData(InteractionType.Progress, options.Title ?? string.Empty, message, new InteractionInputCollection([]), options, cancellationToken, new TaskCompletionSource<object>());
Aspire.Hosting.Tests (3)
AtsInteractionExportsTests.cs (2)
36Assert.Equal("Progress", options.Title); 61Assert.Null(options.Title);
tests\Shared\TestInteractionService.cs (1)
85var data = new InteractionData(InteractionType.Progress, options.Title ?? string.Empty, message, new InteractionInputCollection([]), options, cancellationToken, new TaskCompletionSource<object>());