11 references to _commandParts
Microsoft.TemplateEngine.Cli (11)
Commands\Example.cs (11)
16
_commandParts
.AddRange(commandParts);
24
return string.Join(" ",
_commandParts
);
76
_commandParts
.Add(option.Name);
79
_commandParts
.AddRange(args.Select(a => a.Any(char.IsWhiteSpace) ? $"'{a}'" : a));
87
_commandParts
.Add(CommandLineUtils.FormatArgumentUsage(option));
100
_commandParts
.AddRange(args.Select(a => a.Any(char.IsWhiteSpace) ? $"'{a}'" : a));
103
_commandParts
.Add(CommandLineUtils.FormatArgumentUsage(argument));
114
_commandParts
.Add(command.Name);
128
_commandParts
.Add(token);
140
_commandParts
.Add(_currentCommand.Name);
147
_commandParts
.Add(Constants.KnownHelpAliases.First());