Localization for dotnet-clean command. (#4878)

* Localization for dotnet-clean command.

* Modified spacing to keep under the 120 char limit

Moved the parameters of each option to a new line.

* Moved projectArgument parameter to a new line
This commit is contained in:
Scott Carlton 2016-12-01 11:20:44 -08:00 committed by Piotr Puszkiewicz
parent 15d278a07f
commit 1aa562d97f
2 changed files with 42 additions and 8 deletions

View file

@ -0,0 +1,25 @@
namespace Microsoft.DotNet.Tools.Clean
{
internal class LocalizableStrings
{
public const string AppFullName = ".NET Clean Command";
public const string AppDescription = "Command to clean previously generated build outputs.";
public const string CmdArgProject = "PROJECT";
public const string CmdArgProjDescription= "The MSBuild project file to build. If a project file is not specified, MSBuild searches the current working directory for a file that has a file extension that ends in `proj` and uses that file.";
public const string CmdOutputDir = "OUTPUT_DIR";
public const string CmdOutputDirDescription = "Directory in which the build outputs have been placed";
public const string CmdFramework = "FRAMEWORK";
public const string CmdFrameworkDescription = "Clean a specific framework";
public const string CmdConfiguration = "CONFIGURATION";
public const string CmdConfigurationDescription = "Clean a specific configuration";
}
}