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

66 lines
2.5 KiB
C#
Raw Normal View History

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";
public const string DiagnosticsDefinition = "Enable diagnostic output";
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-16 15:50:18 -08:00
public const string RestoreDefinition = "Restore dependencies specified in the .NET project.";
2016-12-16 15:50:18 -08:00
public const string BuildDefinition = "Builds a .NET project.";
2016-12-16 15:50:18 -08:00
public const string PublishDefinition = "Publishes a .NET project for deployment (including the runtime).";
2016-12-16 15:50:18 -08:00
public const string RunDefinition = "Compiles and immediately executes a .NET project.";
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-16 15:50:18 -08:00
public const string PackDefinition = "Creates a NuGet package.";
2016-12-16 15:50:18 -08:00
public const string MigrateDefinition = "Migrates a project.json based project to a msbuild based project.";
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.";
public const string AdvancedCommands = "Advanced Commands";
2016-12-16 15:50:18 -08:00
public const string NugetDefinition = "Provides additional NuGet commands.";
2016-12-16 17:53:11 -08:00
public const string MsBuildDefinition = "Runs Microsoft Build Engine (MSBuild).";
2016-12-16 17:53:11 -08:00
public const string VsTestDefinition = "Runs Microsoft Test Execution Command Line Tool.";
2016-12-16 15:50:18 -08:00
public const string CleanDefinition = "Clean build output(s).";
}
}