9 implementations of TagsCollection
Microsoft.TemplateEngine.Cli (1)
CliTemplateInfo.cs (1)
52public IReadOnlyDictionary<string, string> TagsCollection => _templateInfo.TagsCollection;
Microsoft.TemplateEngine.Edge (2)
FilterableTemplateInfo.cs (1)
75public IReadOnlyDictionary<string, string> TagsCollection { get; private set; }
Settings\TemplateInfo.cs (1)
229public IReadOnlyDictionary<string, string> TagsCollection { get; private set; } = new Dictionary<string, string>();
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (3)
DirectoryBasedTemplate.Interfaces.cs (1)
47IReadOnlyDictionary<string, string> ITemplateMetadata.TagsCollection => ConfigurationModel.Tags;
RunnableProjectConfig.ITemplate.cs (1)
60IReadOnlyDictionary<string, string> ITemplateMetadata.TagsCollection => ConfigurationModel.Tags;
RunnableProjectGenerator.cs (1)
456public IReadOnlyDictionary<string, string> TagsCollection => _templateInfo.ConfigurationModel.Tags;
Microsoft.TemplateEngine.Utils (1)
IScanTemplateInfoExtensions.cs (1)
57public IReadOnlyDictionary<string, string> TagsCollection => _templateInfo.TagsCollection;
Microsoft.TemplateSearch.Common (2)
Abstractions\TemplateSearchData.cs (1)
62public IReadOnlyDictionary<string, string> TagsCollection => TemplateInfo.TagsCollection;
TemplateDiscoveryMetadata\BlobStorageTemplateInfo.cs (1)
141public IReadOnlyDictionary<string, string> TagsCollection { get; private set; } = new Dictionary<string, string>();
13 references to TagsCollection
Microsoft.TemplateEngine.Cli (1)
CliTemplateInfo.cs (1)
52public IReadOnlyDictionary<string, string> TagsCollection => _templateInfo.TagsCollection;
Microsoft.TemplateEngine.Edge (2)
FilterableTemplateInfo.cs (1)
107TagsCollection = source.TagsCollection,
Settings\TemplateInfo.cs (1)
79TagsCollection = template.TagsCollection;
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (2)
RunnableProjectConfig.ITemplate.cs (1)
92foreach (KeyValuePair<string, string> tag in ((ITemplateInfo)this).TagsCollection)
RunnableProjectGenerator.cs (1)
508foreach (KeyValuePair<string, string> tag in ((ITemplateInfo)this).TagsCollection)
Microsoft.TemplateEngine.Utils (3)
IScanTemplateInfoExtensions.cs (1)
57public IReadOnlyDictionary<string, string> TagsCollection => _templateInfo.TagsCollection;
TemplateInfoExtensions.cs (2)
43if (template.TagsCollection == null || !template.TagsCollection.TryGetValue(tagName, out string tag))
Microsoft.TemplateSearch.Common (5)
Abstractions\TemplateSearchData.cs (1)
62public IReadOnlyDictionary<string, string> TagsCollection => TemplateInfo.TagsCollection;
TemplateDiscoveryMetadata\BlobStorageTemplateInfo.cs (1)
48TagsCollection = templateInfo.TagsCollection ?? new Dictionary<string, string>();
TemplateSearchCache\TemplateSearchData.Json.cs (3)
111if (value.TemplateInfo.TagsCollection.Any()) 113writer.WritePropertyName(nameof(ITemplateInfo.TagsCollection)); 115foreach (var tag in value.TemplateInfo.TagsCollection)