1 write to GroupIdentity
Microsoft.TemplateEngine.Cli (1)
TemplateGroup.cs (1)
40
GroupIdentity
= 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)
171
environmentSettings.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.
173
internal bool HasGroupIdentity => !string.IsNullOrWhiteSpace(
GroupIdentity
);