2 instantiations of FilterOptions
Microsoft.DotNet.Cli.Definitions (2)
Commands\New\LegacyFilterOptions.cs (2)
52=> new() 63=> new()
11 references to FilterOptions
Microsoft.DotNet.Cli.Definitions (9)
Commands\New\LegacyFilterOptions.cs (2)
51public static FilterOptions CreateLegacy() 62public static FilterOptions CreateSupported(bool hasPackageOption)
Commands\New\LegacyOptions.cs (3)
15public readonly FilterOptions FilterOptions = FilterOptions.CreateLegacy(); 42foreach (var name in FilterOptions.GetAllNames(hasPackageOption: true))
Commands\New\NewListCommandDefinition.cs (2)
30public readonly FilterOptions FilterOptions; 49FilterOptions = FilterOptions.CreateSupported(HasSupportedPackageFilterOption);
Commands\New\NewSearchCommandDefinition.cs (2)
25public readonly FilterOptions FilterOptions; 42FilterOptions = FilterOptions.CreateSupported(HasSupportedPackageFilterOption);
Microsoft.TemplateEngine.Cli (2)
TemplateResolution\TemplateMatchInfoExtensions.cs (1)
47var supportedFilters = FilterOptions.GetAllNames(NewListCommandDefinition.HasSupportedPackageFilterOption)
TemplateSearch\CliTemplateSearchCoordinator.cs (1)
257Reporter.Error.WriteLine(LocalizableStrings.CliTemplateSearchCoordinator_Info_SearchHelp, string.Join(", ", FilterOptions.GetAllNames(NewSearchCommandDefinition.HasSupportedPackageFilterOption).Select(static optionName => $"'{optionName}'")));