dotnet-msbuild loc
This commit is contained in:
parent
469abc2d96
commit
2b983f916f
2 changed files with 8 additions and 1 deletions
7
src/dotnet/commands/dotnet-msbuild/LocalizableStrings.cs
Normal file
7
src/dotnet/commands/dotnet-msbuild/LocalizableStrings.cs
Normal file
|
@ -0,0 +1,7 @@
|
|||
namespace Microsoft.DotNet.Tools.MSBuild
|
||||
{
|
||||
internal class LocalizableStrings
|
||||
{
|
||||
public const string VerbosityOptionDescription = "Set the verbosity level of the command. Allowed values are q[uiet], m[inimal], n[ormal], d[etailed], and diag[nostic]";
|
||||
}
|
||||
}
|
|
@ -74,7 +74,7 @@ namespace Microsoft.DotNet.Tools.MSBuild
|
|||
|
||||
internal static CommandOption AddVerbosityOption(CommandLineApplication app)
|
||||
{
|
||||
return app.Option("-v|--verbosity", "Set the verbosity level of the command. Allowed values are q[uiet], m[inimal], n[ormal], d[etailed], and diag[nostic]", CommandOptionType.SingleValue);
|
||||
return app.Option("-v|--verbosity", LocalizableStrings.VerbosityOptionDescription, CommandOptionType.SingleValue);
|
||||
}
|
||||
|
||||
private static string GetMSBuildExePath()
|
||||
|
|
Loading…
Add table
Reference in a new issue