1 write to LongName
GetDocument.Insider (1)
src\Shared\CommandLineUtils\CommandLine\CommandOption.cs (1)
22
LongName
= part.Substring(2);
13 references to LongName
GetDocument.Insider (13)
Commands\GetDocumentCommand.cs (2)
45
throw new CommandException(Resources.FormatMissingOption(_fileListPath.
LongName
));
50
throw new CommandException(Resources.FormatMissingOption(_output.
LongName
));
Commands\ProjectCommandBase.cs (3)
36
throw new CommandException(Resources.FormatMissingOption(AssemblyPath.
LongName
));
41
throw new CommandException(Resources.FormatMissingOption(ProjectName.
LongName
));
46
throw new CommandException(Resources.FormatMissingOption(ToolsDirectory.
LongName
));
src\Shared\CommandLineUtils\CommandLine\CommandLineApplication.cs (7)
171
option = command.GetOptions().SingleOrDefault(opt => string.Equals(opt.
LongName
, longOptionName, StringComparison.Ordinal));
235
throw new CommandParsingException(command, $"Unexpected value '{longOption[1]}' for option '{option.
LongName
}'");
304
throw new CommandParsingException(command, $"Unexpected value '{shortOption[1]}' for option '{option.
LongName
}'");
323
throw new CommandParsingException(command, $"Unexpected value '{arg}' for option '{option.
LongName
}'");
375
throw new CommandParsingException(command, $"Missing value for option '{option.
LongName
}'");
424
Out.WriteLine(string.Format(CultureInfo.CurrentCulture, "Specify --{0} for a list of available options and commands.", OptionHelp.
LongName
));
523
commandsBuilder.Append(FormattableString.Invariant($"Use \"{target.Name} [command] --{OptionHelp.
LongName
}\" for more information about a command."));
src\Shared\CommandLineUtils\CommandLine\CommandOption.cs (1)
48
if (string.IsNullOrEmpty(
LongName
) && string.IsNullOrEmpty(ShortName) && string.IsNullOrEmpty(SymbolName))