More text cleanup
This commit is contained in:
parent
4e554f9741
commit
7294260e09
3 changed files with 13 additions and 13 deletions
|
@ -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";
|
||||
|
||||
|
|
|
@ -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.";
|
||||
|
||||
|
|
|
@ -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:<pathToCustomAdapters>";
|
||||
Example: --test-adapter-path <PATH_TO_ADAPTER>";
|
||||
|
||||
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.";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue