1 type derived from CommandOptions
Aspire.Hosting (1)
ApplicationModel\HttpCommandOptions.cs (1)
9public class HttpCommandOptions : CommandOptions
4 instantiations of CommandOptions
Aspire.Hosting (1)
ApplicationModel\CommandOptions.cs (1)
11internal static CommandOptions Default { get; } = new();
Aspire.Hosting.Tests (1)
Dashboard\DashboardServiceTests.cs (1)
155commandOptions: new()
Stress.AppHost (2)
Program.cs (2)
40commandOptions: new CommandOptions 51commandOptions: new CommandOptions
4 references to CommandOptions
Aspire.Hosting (4)
ApplicationModel\CommandOptions.cs (2)
7/// Optional configuration for resource commands added with <see cref="ResourceBuilderExtensions.WithCommand{T}(Aspire.Hosting.ApplicationModel.IResourceBuilder{T}, string, string, Func{Aspire.Hosting.ApplicationModel.ExecuteCommandContext, Task{Aspire.Hosting.ApplicationModel.ExecuteCommandResult}}, Aspire.Hosting.ApplicationModel.CommandOptions?)"/>. 11internal static CommandOptions Default { get; } = new();
ResourceBuilderExtensions.cs (2)
1370CommandOptions? commandOptions = null) where T : IResource 1377commandOptions ??= CommandOptions.Default;