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)
182
processor => processor.Metadata.Value.
CommandName
!= HelpArgumentProcessor.CommandName))
261
if (processors.Any(i => i.Metadata.Value.
CommandName
== processor.Metadata.Value.
CommandName
))
311
if (result == 1 && _showHelp && processors.First().Metadata.Value.
CommandName
!= HelpArgumentProcessor.CommandName)
342
if (!commandSeenCount.TryGetValue(processor.Metadata.Value.
CommandName
, out int count))
344
commandSeenCount.Add(processor.Metadata.Value.
CommandName
, 1);
351
commandSeenCount[processor.Metadata.Value.
CommandName
] = ++count;
352
Output.Error(false, string.Format(CultureInfo.CurrentCulture, CommandLineResources.DuplicateArgumentError, processor.Metadata.Value.
CommandName
));
Processors\Utilities\ArgumentProcessorFactory.cs (1)
237
string commandName = argumentProcessor.Metadata.Value.
CommandName
;