2 implementations of IsAvailable
Aspire.Hosting (1)
ApplicationModel\InteractionService.cs (1)
33
public bool
IsAvailable
=> !_distributedApplicationOptions.DisableDashboard;
Aspire.Hosting.Tests (1)
VersionChecking\VersionCheckServiceTests.cs (1)
242
public bool
IsAvailable
{ get; set; } = true;
1 reference to IsAvailable
Aspire.Hosting (1)
VersionChecking\VersionCheckService.cs (1)
53
if (!_interactionService.
IsAvailable
|| _executionContext.IsPublishMode || _configuration.GetBool(KnownConfigNames.VersionCheckDisabled, defaultValue: false))