6 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.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>();
11 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.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)