2 implementations of IsAvailable
Aspire.Hosting (1)
InteractionService.cs (1)
32
public bool
IsAvailable
=> !_distributedApplicationOptions.DisableDashboard;
Aspire.Hosting.Tests (1)
TestInteractionService.cs (1)
16
public bool
IsAvailable
{ get; set; } = true;
3 references to IsAvailable
Aspire.Hosting (3)
Orchestrator\ParameterProcessor.cs (2)
38
if (interactionService.
IsAvailable
)
82
if (interactionService.
IsAvailable
&& ex is MissingParameterValueException)
VersionChecking\VersionCheckService.cs (1)
52
if (!_interactionService.
IsAvailable
|| _executionContext.IsPublishMode || _configuration.GetBool(KnownConfigNames.VersionCheckDisabled, defaultValue: false))