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

25 lines
975 B
C#
Raw Normal View History

2016-12-04 23:24:07 -08:00
namespace Microsoft.DotNet.Tools.Add
{
internal class LocalizableStrings
{
public const string NetAddCommand = ".NET Add Command";
public const string Usage = "Usage";
public const string Options = "Options";
public const string HelpDefinition = "Show help information";
public const string Arguments = "Arguments";
public const string ArgumentsObjectDefinition = "The object of the operation. If a project file is not specified, it defaults to the current directory.";
public const string ArgumentsCommandDefinition = "Command to be executed on <object>.";
public const string ArgsDefinition = "Any extra arguments passed to the command. Use `dotnet add <command> --help` to get help about these arguments.";
public const string Commands = "Commands";
public const string CommandP2PDefinition = "Add project to project (p2p) reference to a project";
}
}