17 writes to DisableDashboard
Aspire.Hosting.Testing (1)
DistributedApplicationFactory.cs (1)
192
applicationOptions.
DisableDashboard
= true;
Aspire.Hosting.Tests (15)
Dashboard\DashboardResourceTests.cs (13)
27
options => options.
DisableDashboard
= false,
62
options => options.
DisableDashboard
= false,
85
options => options.
DisableDashboard
= false,
162
options => options.
DisableDashboard
= false,
195
options => options.
DisableDashboard
= false,
234
options => options.
DisableDashboard
= false,
268
options => options.
DisableDashboard
= false,
301
options => options.
DisableDashboard
= false,
345
options => options.
DisableDashboard
= false,
381
options.
DisableDashboard
= false;
399
options => options.
DisableDashboard
= true,
418
options.
DisableDashboard
= true;
437
options => options.
DisableDashboard
= false,
Dashboard\TransportOptionsValidatorTests.cs (1)
53
DisableDashboard
= true
ManifestGenerationTests.cs (1)
114
{ Args = GetManifestArgs(),
DisableDashboard
= true, AssemblyName = typeof(ManifestGenerationTests).Assembly.FullName });
TestProject.AppHost (1)
TestProgram.cs (1)
48
DisableDashboard
= disableDashboard,
5 references to DisableDashboard
Aspire.Hosting (5)
DistributedApplication.cs (2)
32
/// constructing the <see cref="IDistributedApplicationBuilder"/> including disabling the .NET Aspire dashboard (see <see cref="DistributedApplicationOptions.
DisableDashboard
"/>) or
159
/// property, or disabling the dashboard by using the <see cref="DistributedApplicationOptions.
DisableDashboard
"/>
DistributedApplicationBuilder.cs (2)
242
o.DefaultWaitBehavior = options.
DisableDashboard
? WaitBehavior.StopOnResourceUnavailable : WaitBehavior.WaitOnResourceUnavailable;
273
if (!options.
DisableDashboard
)
DistributedApplicationOptions.cs (1)
74
internal bool DashboardEnabled => !
DisableDashboard
;