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