diff --git a/src/dotnet/commands/dotnet-build/LocalizableStrings.cs b/src/dotnet/commands/dotnet-build/LocalizableStrings.cs index 7c5f85371..f8c16a793 100644 --- a/src/dotnet/commands/dotnet-build/LocalizableStrings.cs +++ b/src/dotnet/commands/dotnet-build/LocalizableStrings.cs @@ -6,7 +6,7 @@ public const string AppFullName = ".NET Builder"; - public const string ConfigurationOptionDescription = "Configuration to use for buulding the project. Default is \"Debug\"."; + public const string ConfigurationOptionDescription = "Configuration to use for building the project. Default is \"Debug\"."; public const string ConfigurationOptionName = "CONFIGURATION"; diff --git a/src/dotnet/commands/dotnet-restore/LocalizableStrings.cs b/src/dotnet/commands/dotnet-restore/LocalizableStrings.cs index e3a6f860d..7b63ee1b7 100644 --- a/src/dotnet/commands/dotnet-restore/LocalizableStrings.cs +++ b/src/dotnet/commands/dotnet-restore/LocalizableStrings.cs @@ -6,21 +6,21 @@ public const string AppDescription = "restore for msbuild"; - public const string CmdArgument = "project"; + public const string CmdArgument = "PROJECT"; public const string CmdArgumentDescription = "Optional path to a project file or MSBuild arguments."; - public const string CmdSourceOption = "source"; + public const string CmdSourceOption = "SOURCE"; public const string CmdSourceOptionDescription = "Specifies a NuGet package source to use during the restore."; - public const string CmdPackagesOption = "packagesDirectory"; + public const string CmdPackagesOption = "PACKAGES_DIRECTORY"; public const string CmdPackagesOptionDescription = "Directory to install packages in."; public const string CmdDisableParallelOptionDescription = "Disables restoring multiple projects in parallel."; - public const string CmdConfigFileOption = "file"; + public const string CmdConfigFileOption = "FILE"; public const string CmdConfigFileOptionDescription = "The NuGet configuration file to use."; diff --git a/src/dotnet/commands/dotnet-test/LocalizableStrings.cs b/src/dotnet/commands/dotnet-test/LocalizableStrings.cs index 542b67c14..3252a6717 100644 --- a/src/dotnet/commands/dotnet-test/LocalizableStrings.cs +++ b/src/dotnet/commands/dotnet-test/LocalizableStrings.cs @@ -10,13 +10,13 @@ public const string CmdArgDescription = "The project to test, defaults to the current directory."; - public const string CmdSettingsFile = "SettingsFile"; + public const string CmdSettingsFile = "SETTINGS_FILE"; public const string CmdSettingsDescription = "Settings to use when running tests."; public const string CmdListTestsDescription = @"Lists discovered tests"; - public const string CmdTestCaseFilterExpression = "Expression"; + public const string CmdTestCaseFilterExpression = "EXPRESSION"; public const string CmdTestCaseFilterDescription = @"Run tests that match the given expression. Examples: @@ -27,26 +27,26 @@ "; public const string CmdTestAdapterPathDescription = @"Use custom adapters from the given path in the test run. - Example: --test-adapter-path:"; + Example: --test-adapter-path "; public const string CmdLoggerOption = "LoggerUri/FriendlyName"; public const string CmdLoggerDescription = @"Specify a logger for test results. Example: --logger:trx"; - public const string CmdConfiguration = "configuration"; + public const string CmdConfiguration = "CONFIGURATION"; - public const string CmdConfigDescription = @"Configuration under which to build, i.e. Debug/Release"; + public const string CmdConfigDescription = "Configuration to use for building the project. Default is \"Debug\"."; - public const string CmdFramework = "FrameworkVersion"; + public const string CmdFramework = "FRAMEWORK"; public const string CmdFrameworkDescription = @"Looks for test binaries for a specific framework"; - public const string CmdOutputDir = "OutputDir"; + public const string CmdOutputDir = "OUTPUT_DIR"; public const string CmdOutputDescription = @"Directory in which to find the binaries to be run"; - public const string CmdPathToLogFile = "PathToLogFile"; + public const string CmdPathToLogFile = "PATH_TO_FILE"; public const string CmdPathTologFileDescription = @"Enable verbose logs for test platform. Logs are written to the provided file.";