16 instantiations of FeatureMetadata
aspire (16)
KnownFeatures.cs (16)
37[UpdateNotificationsEnabled] = new( 42[MinimumSdkCheckEnabled] = new( 47[ExecCommandEnabled] = new( 52[OrphanDetectionWithTimestampEnabled] = new( 57[ShowDeprecatedPackages] = new( 62[PackageSearchDiskCachingEnabled] = new( 67[StagingChannelEnabled] = new( 72[DefaultWatchEnabled] = new( 77[ShowAllTemplates] = new( 82[PolyglotSupportEnabled] = new( 87[ExperimentalPolyglotRust] = new( 92[ExperimentalPolyglotJava] = new( 97[ExperimentalPolyglotGo] = new( 102[ExperimentalPolyglotPython] = new( 107[DotNetSdkInstallationEnabled] = new( 112[RunningInstanceDetectionEnabled] = new(
5 references to FeatureMetadata
aspire (5)
Commands\ConfigCommand.cs (1)
261foreach (var feature in unconfiguredFeatures)
KnownFeatures.cs (4)
35private static readonly Dictionary<string, FeatureMetadata> s_featureMetadata = new() 121public static FeatureMetadata? GetFeatureMetadata(string featureName) 123return s_featureMetadata.TryGetValue(featureName, out var metadata) ? metadata : null; 129public static IEnumerable<FeatureMetadata> GetAllFeatureMetadata()