1 implementation of CommandName
vstest.console (1)
Processors\Utilities\BaseArgumentProcessorCapabilities.cs (1)
24
public abstract string
CommandName
{ get; }
9 references to CommandName
vstest.console (9)
CommandLine\Executor.cs (8)
209
processor => processor.Metadata.Value.
CommandName
!= HelpArgumentProcessor.CommandName))
288
if (processors.Any(i => i.Metadata.Value.
CommandName
== processor.Metadata.Value.
CommandName
))
338
if (result == 1 && _showHelp && processors.First().Metadata.Value.
CommandName
!= HelpArgumentProcessor.CommandName)
369
if (!commandSeenCount.TryGetValue(processor.Metadata.Value.
CommandName
, out int count))
371
commandSeenCount.Add(processor.Metadata.Value.
CommandName
, 1);
378
commandSeenCount[processor.Metadata.Value.
CommandName
] = ++count;
379
Output.Error(false, string.Format(CultureInfo.CurrentCulture, CommandLineResources.DuplicateArgumentError, processor.Metadata.Value.
CommandName
));
Processors\Utilities\ArgumentProcessorFactory.cs (1)
268
string commandName = argumentProcessor.Metadata.Value.
CommandName
;