dotnet-installer/src/dotnet/commands/dotnet-list/LocalizableStrings.cs

26 lines
948 B
C#
Raw Normal View History

namespace Microsoft.DotNet.Tools.List
{
internal class LocalizableStrings
{
public const string Usage = "Usage";
public const string Arguments = "Arguments";
public const string ExtraArgs = "Args";
public const string ListCommandDescription = ".NET List Command";
public const string Commands = "Commands";
public const string CommandDefinition = "Command to be executed on <object>.";
public const string ExtraArgumentsDefinition = "Any extra arguments passed to the command. Use `dotnet list <command> --help` to get help about these arguments.";
public const string HelpDefinition = "Show help";
public const string ObjectDefinition = "The object of the operation. If a project file is not specified, it defaults to the current directory.";
public const string P2PsDefinition = "List project to project (p2p) references from a project";
}
}