10 instantiations of FeatureMetadata
aspire (10)
KnownFeatures.cs (10)
35[UpdateNotificationsEnabled] = new( 40[ExecCommandEnabled] = new( 45[ShowDeprecatedPackages] = new( 50[StagingChannelEnabled] = new( 55[DefaultWatchEnabled] = new( 60[ShowAllTemplates] = new( 65[ExperimentalPolyglotRust] = new( 70[ExperimentalPolyglotJava] = new( 75[ExperimentalPolyglotGo] = new( 80[ExperimentalPolyglotPython] = new(
5 references to FeatureMetadata
aspire (5)
Commands\ConfigCommand.cs (1)
290foreach (var feature in unconfiguredFeatures)
KnownFeatures.cs (4)
33private static readonly Dictionary<string, FeatureMetadata> s_featureMetadata = new() 89public static FeatureMetadata? GetFeatureMetadata(string featureName) 91return s_featureMetadata.TryGetValue(featureName, out var metadata) ? metadata : null; 97public static IEnumerable<FeatureMetadata> GetAllFeatureMetadata()