6 implementations of Tags
Microsoft.TemplateEngine.Cli (1)
CliTemplateInfo.cs (1)
50public IReadOnlyDictionary<string, ICacheTag> Tags => _templateInfo.Tags;
Microsoft.TemplateEngine.Edge (2)
FilterableTemplateInfo.cs (1)
50public IReadOnlyDictionary<string, ICacheTag> Tags { get; private set; }
Settings\TemplateInfo.cs (1)
164IReadOnlyDictionary<string, ICacheTag> ITemplateInfo.Tags
Microsoft.TemplateEngine.Utils (1)
IScanTemplateInfoExtensions.cs (1)
55public IReadOnlyDictionary<string, ICacheTag> Tags => throw new NotSupportedException();
Microsoft.TemplateSearch.Common (2)
Abstractions\TemplateSearchData.cs (1)
86IReadOnlyDictionary<string, ICacheTag> ITemplateInfo.Tags => TemplateInfo.Tags;
TemplateDiscoveryMetadata\BlobStorageTemplateInfo.cs (1)
118public IReadOnlyDictionary<string, ICacheTag> Tags { get; private set; } = new Dictionary<string, ICacheTag>();
7 references to Tags
Microsoft.TemplateEngine.Abstractions (2)
TemplateFiltering\MatchInfo.cs (2)
65/// Template language (<see cref="ITemplateInfo.Tags"/> named "language"). 70/// Template type (<see cref="ITemplateInfo.Tags"/> named "type").
Microsoft.TemplateEngine.Cli (1)
CliTemplateInfo.cs (1)
50public IReadOnlyDictionary<string, ICacheTag> Tags => _templateInfo.Tags;
Microsoft.TemplateEngine.Edge (1)
FilterableTemplateInfo.cs (1)
96Tags = source.Tags,
Microsoft.TemplateEngine.Utils (2)
WellKnownSearchFilters.cs (2)
84/// - if <paramref name="inputType"/> is equal to tag named 'type' from <see cref="ITemplateInfo.Tags"/> (case insensitive), adds match disposition <see cref="MatchInfo.BuiltIn.Type"/> with <see cref="MatchKind.Exact"/>;<br/> 135/// - if <paramref name="language"/> is equal to tag named 'language' from <see cref="ITemplateInfo.Tags"/> (case insensitive), adds match disposition <see cref="MatchInfo.BuiltIn.Language"/> with <see cref="MatchKind.Exact"/>;<br/>
Microsoft.TemplateSearch.Common (1)
Abstractions\TemplateSearchData.cs (1)
86IReadOnlyDictionary<string, ICacheTag> ITemplateInfo.Tags => TemplateInfo.Tags;