11 references to _commandParts
Microsoft.TemplateEngine.Cli (11)
Commands\Example.cs (11)
16_commandParts.AddRange(commandParts); 24return 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());