13 instantiations of FeatureMetadata
aspire (13)
KnownFeatures.cs (13)
43[UpdateNotificationsEnabled] = new( 48[ShowDeprecatedPackages] = new( 53[StagingChannelEnabled] = new( 58[DefaultWatchEnabled] = new( 63[ShowAllTemplates] = new( 68[ExperimentalPolyglotRust] = new( 73[ExperimentalPolyglotJava] = new( 78[ExperimentalPolyglotGo] = new( 83[ExperimentalPolyglotPython] = new( 88[NuGetSignatureVerificationEnabled] = new( 93[AspireSkillsRemoteFetchEnabled] = new( 102[TerminalCommandsEnabled] = new( 107[PolyglotIntegrationFilterEnabled] = new(
6 references to FeatureMetadata
aspire (6)
Commands\ConfigCommand.cs (1)
297foreach (var feature in unconfiguredFeatures)
Configuration\Features.cs (1)
33foreach (var metadata in KnownFeatures.GetAllFeatureMetadata())
KnownFeatures.cs (4)
41private static readonly Dictionary<string, FeatureMetadata> s_featureMetadata = new() 116public static FeatureMetadata? GetFeatureMetadata(string featureName) 118return s_featureMetadata.TryGetValue(featureName, out var metadata) ? metadata : null; 124public static IEnumerable<FeatureMetadata> GetAllFeatureMetadata()