1 write to _templateInfo
Microsoft.TemplateEngine.Utils (1)
IScanTemplateInfoExtensions.cs (1)
26_templateInfo = templateInfo;
21 references to _templateInfo
Microsoft.TemplateEngine.Utils (21)
IScanTemplateInfoExtensions.cs (21)
31public string? Author => _templateInfo.Author; 33public string? Description => _templateInfo.Description; 35public IReadOnlyList<string> Classifications => _templateInfo.Classifications; 37public string? DefaultName => _templateInfo.DefaultName; 39public string Identity => _templateInfo.Identity; 41public Guid GeneratorId => _templateInfo.GeneratorId; 43public string? GroupIdentity => _templateInfo.GroupIdentity; 45public int Precedence => _templateInfo.Precedence; 47public string Name => _templateInfo.Name; 51public string ShortName => _templateInfo.ShortNameList.FirstOrDefault() ?? string.Empty; 57public IReadOnlyDictionary<string, string> TagsCollection => _templateInfo.TagsCollection; 62public IParameterDefinitionSet ParameterDefinitions => _templateInfo.ParameterDefinitions; 65public IReadOnlyList<ITemplateParameter> Parameters => _templateInfo.ParameterDefinitions; 67public string MountPointUri => _templateInfo.MountPointUri; 69public string ConfigPlace => _templateInfo.ConfigPlace; 75public string? ThirdPartyNotices => _templateInfo.ThirdPartyNotices; 77public IReadOnlyDictionary<string, IBaselineInfo> BaselineInfo => _templateInfo.BaselineInfo; 82public IReadOnlyList<string> ShortNameList => _templateInfo.ShortNameList; 84public IReadOnlyList<Guid> PostActions => _templateInfo.PostActions; 86public IReadOnlyList<TemplateConstraintInfo> Constraints => _templateInfo.Constraints; 88public bool PreferDefaultName => _templateInfo.PreferDefaultName;