1 write to GroupIdentity
Microsoft.TemplateEngine.Cli (1)
TemplateGroup.cs (1)
40GroupIdentity = templates.Select(t => string.IsNullOrWhiteSpace(t.GroupIdentity) ? null : t.GroupIdentity)
4 references to GroupIdentity
Microsoft.TemplateEngine.Cli (4)
Commands\create\InstantiateCommand.cs (2)
149.DefineColumn(t => t.GroupIdentity ?? t.Templates[0].Identity, out object? identityColumn, LocalizableStrings.ColumnNameIdentity, showAlways: true) 171environmentSettings.Host.Logger.LogWarning(LocalizableStrings.InstantiateCommand_Warning_FailedToGetTemplatePackageForTemplateGroup, templateGroup.GroupIdentity);
TemplateGroup.cs (2)
171/// Returns true when <see cref="GroupIdentity"/> is not <c>null</c> or empty. 173internal bool HasGroupIdentity => !string.IsNullOrWhiteSpace(GroupIdentity);