Implemented interface member:
property
Identity
Microsoft.TemplateEngine.Abstractions.ITemplateMetadata.Identity
8 references to Identity
Microsoft.TemplateEngine.Cli (8)
CliTemplateInfo.cs (1)
102throw new Exception($"Template {Identity} defines {parameter.Name} twice.");
Commands\create\InstantiateCommand.cs (3)
120.DefineColumn(t => t.GroupIdentity ?? t.Templates[0].Identity, out object? identityColumn, LocalizableStrings.ColumnNameIdentity, showAlways: true) 303.DefineColumn(t => t.Identity, out object? identityColumn, LocalizableStrings.ColumnNameIdentity, showAlways: true) 335environmentSettings.Host.Logger.LogWarning(LocalizableStrings.InstantiateCommand_Warning_FailedToGetTemplatePackageForTemplate, template.Identity);
Commands\create\TemplateCommandArgs.cs (1)
116throw new InvalidOperationException($"Parameter {parameterName} is not defined for {Template.Identity}.");
Commands\InvalidTemplateParametersException.cs (1)
23stringBuilder.Append(string.Format(LocalizableStrings.Exception_InvalidTemplateParameters_MessageHeader, Template.Identity, Template.ShortNameList[0]));
TemplateInvoker.cs (1)
52string? templateName = Sha256Hasher.HashWithNormalizedCasing(templateToRun.Identity);
TemplatePackageCoordinator.cs (1)
70Reporter.Error.WriteLine(LocalizableStrings.TemplatePackageCoordinator_Error_PackageForTemplateNotFound, args.Template.Identity);