1 write to _templateInfo
Microsoft.TemplateEngine.Cli (1)
CliTemplateInfo.cs (1)
24_templateInfo = templateInfo ?? throw new ArgumentNullException(nameof(templateInfo));
26 references to _templateInfo
Microsoft.TemplateEngine.Cli (26)
CliTemplateInfo.cs (26)
28public string? Author => _templateInfo.Author; 30public string? Description => _templateInfo.Description; 32public IReadOnlyList<string> Classifications => _templateInfo.Classifications; 34public string? DefaultName => _templateInfo.DefaultName; 36public string Identity => _templateInfo.Identity; 38public Guid GeneratorId => _templateInfo.GeneratorId; 40public string? GroupIdentity => _templateInfo.GroupIdentity; 42public int Precedence => _templateInfo.Precedence; 44public string Name => _templateInfo.Name; 47public string ShortName => _templateInfo.ShortName; 50public IReadOnlyDictionary<string, ICacheTag> Tags => _templateInfo.Tags; 52public IReadOnlyDictionary<string, string> TagsCollection => _templateInfo.TagsCollection; 55public IReadOnlyDictionary<string, ICacheParameter> CacheParameters => _templateInfo.CacheParameters; 57public IParameterDefinitionSet ParameterDefinitions => _templateInfo.ParameterDefinitions; 62public string MountPointUri => _templateInfo.MountPointUri; 64public string ConfigPlace => _templateInfo.ConfigPlace; 66public string? LocaleConfigPlace => _templateInfo.LocaleConfigPlace; 68public string? HostConfigPlace => _templateInfo.HostConfigPlace; 70public string? ThirdPartyNotices => _templateInfo.ThirdPartyNotices; 72public bool PreferDefaultName => _templateInfo.PreferDefaultName; 74public IReadOnlyDictionary<string, IBaselineInfo> BaselineInfo => _templateInfo.BaselineInfo; 77public bool HasScriptRunningPostActions { get => _templateInfo.HasScriptRunningPostActions; set => _templateInfo.HasScriptRunningPostActions = value; } 79public IReadOnlyList<string> ShortNameList => _templateInfo.ShortNameList; 81public IReadOnlyList<Guid> PostActions => _templateInfo.PostActions; 83public IReadOnlyList<TemplateConstraintInfo> Constraints => _templateInfo.Constraints;