Implemented interface member:
property
Name
Microsoft.TemplateEngine.Abstractions.ITemplateParameter.Name
2 writes to Name
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (2)
ConfigModel\TemplateConfigModel.cs (1)
495
Name
= parameterSymbol.Name,
Parameter.cs (1)
19
this.
Name
= name;
5 references to Name
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (5)
Parameter.cs (5)
16
throw new ArgumentException($"{nameof(
Name
)} property should not be null or whitespace", nameof(name));
60
return $"{
Name
} ({Type})";
83
public override int GetHashCode() =>
Name
.GetHashCode();
85
public bool Equals(ITemplateParameter other) => !string.IsNullOrEmpty(
Name
) && !string.IsNullOrEmpty(other.Name) &&
Name
== other.Name;