18 writes to DisableDashboard
Aspire.Hosting.Testing (1)
DistributedApplicationFactory.cs (1)
157
applicationOptions.
DisableDashboard
= true;
Aspire.Hosting.Tests (16)
Dashboard\DashboardResourceTests.cs (13)
26
options => options.
DisableDashboard
= false,
61
options => options.
DisableDashboard
= false,
82
options => options.
DisableDashboard
= false,
157
options => options.
DisableDashboard
= false,
188
options => options.
DisableDashboard
= false,
225
options => options.
DisableDashboard
= false,
257
options => options.
DisableDashboard
= false,
290
options => options.
DisableDashboard
= false,
333
options => options.
DisableDashboard
= false,
369
options.
DisableDashboard
= false;
387
options => options.
DisableDashboard
= true,
406
options.
DisableDashboard
= true;
425
options => options.
DisableDashboard
= false,
Dashboard\TransportOptionsValidatorTests.cs (1)
53
DisableDashboard
= true
ManifestGenerationTests.cs (1)
151
{ Args = GetManifestArgs(),
DisableDashboard
= true, AssemblyName = typeof(ManifestGenerationTests).Assembly.FullName });
Utils\TestDistributedApplicationBuilder.cs (1)
95
applicationOptions.
DisableDashboard
= true;
TestProject.AppHost (1)
TestProgram.cs (1)
48
DisableDashboard
= disableDashboard,
4 references to DisableDashboard
Aspire.Hosting (4)
DistributedApplication.cs (2)
32
/// constructing the <see cref="IDistributedApplicationBuilder"/> including disabling the .NET Aspire dashboard (see <see cref="DistributedApplicationOptions.
DisableDashboard
"/>) or
156
/// property, or disable the dashboard by using the <see cref="DistributedApplicationOptions.
DisableDashboard
"/>
DistributedApplicationBuilder.cs (1)
216
if (!options.
DisableDashboard
)
DistributedApplicationOptions.cs (1)
69
internal bool DashboardEnabled => !
DisableDashboard
;