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 16:55:52 -08:00
|
|
|
|
public const string DiagnosticsDefinition = "Enable diagnostic output";
|
2016-12-15 15:13:00 -08:00
|
|
|
|
|
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";
|
|
|
|
|
|
2016-12-16 15:50:18 -08:00
|
|
|
|
public const string NewDefinition = "Initialize .NET projects.";
|
2016-12-04 20:24:02 -08:00
|
|
|
|
|
2016-12-16 15:50:18 -08:00
|
|
|
|
public const string RestoreDefinition = "Restore dependencies specified in the .NET project.";
|
2016-12-04 20:24:02 -08:00
|
|
|
|
|
2016-12-16 15:50:18 -08:00
|
|
|
|
public const string BuildDefinition = "Builds a .NET project.";
|
2016-12-04 20:24:02 -08:00
|
|
|
|
|
2016-12-16 15:50:18 -08:00
|
|
|
|
public const string PublishDefinition = "Publishes a .NET project for deployment (including the runtime).";
|
2016-12-04 20:24:02 -08:00
|
|
|
|
|
2016-12-16 15:50:18 -08:00
|
|
|
|
public const string RunDefinition = "Compiles and immediately executes a .NET project.";
|
2016-12-04 20:24:02 -08:00
|
|
|
|
|
2016-12-16 15:50:18 -08:00
|
|
|
|
public const string TestDefinition = "Runs unit tests using the test runner specified in the project.";
|
2016-12-04 20:24:02 -08:00
|
|
|
|
|
2016-12-16 15:50:18 -08:00
|
|
|
|
public const string PackDefinition = "Creates a NuGet package.";
|
2016-12-04 20:24:02 -08:00
|
|
|
|
|
2016-12-16 15:50:18 -08:00
|
|
|
|
public const string MigrateDefinition = "Migrates a project.json based project to a msbuild based project.";
|
2016-12-04 20:24:02 -08:00
|
|
|
|
|
|
|
|
|
public const string ProjectModificationCommands = "Project modification commands";
|
|
|
|
|
|
2016-12-16 15:50:18 -08:00
|
|
|
|
public const string AddDefinition = "Add items to the project.";
|
|
|
|
|
|
|
|
|
|
public const string RemoveDefinition = "Remove items from the project.";
|
2016-12-04 20:24:02 -08:00
|
|
|
|
|
|
|
|
|
public const string AdvancedCommands = "Advanced Commands";
|
|
|
|
|
|
2016-12-16 15:50:18 -08:00
|
|
|
|
public const string NugetDefinition = "Provides additional NuGet commands.";
|
2016-12-04 20:24:02 -08:00
|
|
|
|
|
2016-12-16 15:50:18 -08:00
|
|
|
|
public const string MsBuildDefinition = "Builds a project using MSBuild and all of its dependencies.";
|
2016-12-04 20:24:02 -08:00
|
|
|
|
|
2016-12-16 15:50:18 -08:00
|
|
|
|
public const string VsTestDefinition = "Runs tests from the specified files.";
|
2016-12-15 23:11:18 -08:00
|
|
|
|
|
2016-12-16 15:50:18 -08:00
|
|
|
|
public const string CleanDefinition = "Clean build output(s).";
|
2016-12-04 20:24:02 -08:00
|
|
|
|
}
|
|
|
|
|
}
|