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