13 references to UpdateNotificationsEnabled
aspire (5)
Commands\BaseCommand.cs (1)
239
if (UpdateNotificationsEnabled && !_isJsonFormatRequested && services.Features.IsFeatureEnabled(KnownFeatures.
UpdateNotificationsEnabled
, true))
DotNet\DotNetCliRunner.cs (1)
995
if (!features.IsFeatureEnabled(KnownFeatures.
UpdateNotificationsEnabled
, defaultValue: true))
KnownFeatures.cs (2)
43
[
UpdateNotificationsEnabled
] = new(
44
UpdateNotificationsEnabled
,
NuGet\NuGetPackagePrefetcher.cs (1)
29
features.IsFeatureEnabled(KnownFeatures.
UpdateNotificationsEnabled
, true));
Aspire.Cli.Tests (8)
Commands\AddCommandTests.cs (1)
2007
options.DisabledFeatures = [KnownFeatures.
UpdateNotificationsEnabled
];
DotNet\DotNetCliRunnerTests.cs (3)
856
options.DisabledFeatures = [KnownFeatures.
UpdateNotificationsEnabled
];
896
options.EnabledFeatures = [KnownFeatures.
UpdateNotificationsEnabled
];
938
options.DisabledFeatures = [KnownFeatures.
UpdateNotificationsEnabled
];
NuGet\NuGetPackagePrefetcherTests.cs (4)
117
features.SetFeature(KnownFeatures.
UpdateNotificationsEnabled
, true);
347
features.SetFeature(KnownFeatures.
UpdateNotificationsEnabled
, true);
403
features.SetFeature(KnownFeatures.
UpdateNotificationsEnabled
, true);
488
features.SetFeature(KnownFeatures.
UpdateNotificationsEnabled
, updateNotificationsEnabled);