25 lines
975 B
C#
25 lines
975 B
C#
![]() |
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";
|
||
|
}
|
||
|
}
|