1 implementation of Name
aspire (1)
Templating\CallbackTemplate.cs (1)
11
public string
Name
=> name;
3 references to Name
aspire (3)
Commands\NewCommand.cs (2)
74
if (parseResult.CommandResult.Command != this && _templates.Single(t => t.
Name
.Equals(parseResult.CommandResult.Command.Name, StringComparison.OrdinalIgnoreCase)) is ITemplate template)
142
t => $"{t.
Name
} ({t.Description})",
Commands\TemplateCommand.cs (1)
13
public TemplateCommand(ITemplate template, Func<ParseResult, CancellationToken, Task<int>> executeCallback) : base(template.
Name
, template.Description)