7 instantiations of WebApplicationOptions
Aspire.Dashboard.Tests (1)
Integration\Playwright\Infrastructure\DashboardServerFixture.cs (1)
50options: new WebApplicationOptions
aspire-managed (1)
Program.cs (1)
18var options = new WebApplicationOptions
Microsoft.AspNetCore (5)
WebApplication.cs (5)
96new WebApplicationBuilder(new() { Args = args }).Build(); 103new(new()); 110new(new(), slim: true); 118new(new() { Args = args }); 126new(new() { Args = args }, slim: true);
13 references to WebApplicationOptions
Aspire.Dashboard (1)
DashboardWebApplication.cs (1)
121WebApplicationOptions? options = null)
aspire-managed (1)
Program.cs (1)
18var options = new WebApplicationOptions
Microsoft.AspNetCore (11)
WebApplication.cs (6)
131/// <param name="options">The <see cref="WebApplicationOptions"/> to configure the <see cref="WebApplicationBuilder"/>.</param> 133public static WebApplicationBuilder CreateBuilder(WebApplicationOptions options) => 139/// <param name="options">The <see cref="WebApplicationOptions"/> to configure the <see cref="WebApplicationBuilder"/>.</param> 141public static WebApplicationBuilder CreateSlimBuilder(WebApplicationOptions options) => 147/// <param name="options">The <see cref="WebApplicationOptions"/> to configure the <see cref="WebApplicationBuilder"/>.</param> 149public static WebApplicationBuilder CreateEmptyBuilder(WebApplicationOptions options) =>
WebApplicationBuilder.cs (4)
34internal WebApplicationBuilder(WebApplicationOptions options, Action<IHostBuilder>? configureDefaults = null) 80internal WebApplicationBuilder(WebApplicationOptions options, bool slim, Action<IHostBuilder>? configureDefaults = null) 148internal WebApplicationBuilder(WebApplicationOptions options, bool slim, bool empty, Action<IHostBuilder>? configureDefaults = null) 244private static void SetDefaultContentRoot(WebApplicationOptions options, ConfigurationManager configuration)
WebApplicationOptions.cs (1)
7/// Options for configuring the behavior for <see cref="WebApplication.CreateBuilder(WebApplicationOptions)"/>.