2016-12-04 20:24:02 -08:00
|
|
|
|
namespace Microsoft.DotNet.Tools.Help
|
|
|
|
|
{
|
|
|
|
|
internal class LocalizableStrings
|
|
|
|
|
{
|
|
|
|
|
public const string Usage = "Usage";
|
|
|
|
|
|
|
|
|
|
public const string Arguments = "Arguments";
|
|
|
|
|
|
|
|
|
|
public const string CommandDefinition = "The command to execute";
|
|
|
|
|
|
|
|
|
|
public const string ArgumentsDefinition = "Arguments to pass to the command";
|
|
|
|
|
|
|
|
|
|
public const string HostOptionsDefinition = "Options specific to dotnet (host)";
|
|
|
|
|
|
|
|
|
|
public const string OptionsDescription = "Options common to all commands";
|
|
|
|
|
|
|
|
|
|
public const string CommonOptions = "Common options";
|
|
|
|
|
|
|
|
|
|
public const string VerboseDefinition = "Enable verbose output";
|
|
|
|
|
|
2016-12-15 15:13:00 -08:00
|
|
|
|
public const string DiagnosticsDefinition = "Enable diagnostics output";
|
|
|
|
|
|
2016-12-04 20:24:02 -08:00
|
|
|
|
public const string HelpDefinition = "Show help";
|
|
|
|
|
|
|
|
|
|
public const string HostOptions = "Host options (passed before the command)";
|
|
|
|
|
|
|
|
|
|
public const string VersionDescription = "Display .NET CLI Version Number";
|
|
|
|
|
|
|
|
|
|
public const string InfoDescription = "Display .NET CLI Info";
|
|
|
|
|
|
|
|
|
|
public const string Commands = "Commands";
|
|
|
|
|
|
|
|
|
|
public const string NewDefinition = "Initialize a basic .NET project";
|
|
|
|
|
|
2016-12-07 00:46:40 -08:00
|
|
|
|
public const string RestoreDefinition = "Restore dependencies specified in the .NET project";
|
2016-12-04 20:24:02 -08:00
|
|
|
|
|
|
|
|
|
public const string BuildDefinition = "Builds a .NET project";
|
|
|
|
|
|
|
|
|
|
public const string PublishDefinition = "Publishes a .NET project for deployment (including the runtime)";
|
|
|
|
|
|
2016-12-07 00:46:40 -08:00
|
|
|
|
public const string RunDefinition = "Compiles and immediately executes a .NET project";
|
2016-12-04 20:24:02 -08:00
|
|
|
|
|
|
|
|
|
public const string TestDefinition = "Runs unit tests using the test runner specified in the project";
|
|
|
|
|
|
|
|
|
|
public const string PackDefinition = "Creates a NuGet package";
|
|
|
|
|
|
|
|
|
|
public const string MigrateDefinition = "Migrates a project.json based project to a msbuild based project";
|
|
|
|
|
|
|
|
|
|
public const string ProjectModificationCommands = "Project modification commands";
|
|
|
|
|
|
|
|
|
|
public const string AddDefinition = "Add items to the project";
|
|
|
|
|
|
|
|
|
|
public const string RemoveDefinition = "Remove items from the project";
|
|
|
|
|
|
|
|
|
|
public const string AdvancedCommands = "Advanced Commands";
|
|
|
|
|
|
|
|
|
|
public const string NugetDefinition = "Provides additional NuGet commands";
|
|
|
|
|
|
|
|
|
|
public const string MsBuildDefinition = "msbuilds a project and all of its dependencies";
|
|
|
|
|
|
|
|
|
|
public const string VsTestDefinition = "Runs tests from the specified files";
|
|
|
|
|
}
|
|
|
|
|
}
|