Responding to PR feedback

This commit is contained in:
Zlatko Knezevic 2016-12-16 17:53:11 -08:00 committed by Livar Cunha
parent 0da755f405
commit 3073e9bd2c
6 changed files with 9 additions and 9 deletions

View file

@ -6,7 +6,7 @@
public const string AppFullName = ".NET Builder";
public const string ConfigurationOptionDescription = "Configuration to use for building the project. Default is \"Debug\".";
public const string ConfigurationOptionDescription = "Configuration to use for building the project. Default for most projects is \"Debug\".";
public const string ConfigurationOptionName = "CONFIGURATION";

View file

@ -56,9 +56,9 @@
public const string NugetDefinition = "Provides additional NuGet commands.";
public const string MsBuildDefinition = "Builds a project using MSBuild and all of its dependencies.";
public const string MsBuildDefinition = "Runs Microsoft Build Engine (MSBuild).";
public const string VsTestDefinition = "Runs tests from the specified files.";
public const string VsTestDefinition = "Runs Microsoft Test Execution Command Line Tool.";
public const string CleanDefinition = "Clean build output(s).";
}

View file

@ -12,13 +12,13 @@
public const string CmdNoBuildOptionDescription = "Skip building the project prior to packing. By default, the project will be built.";
public const string CmdIncludeSymbolsDescription = "Include packages with symbols in addition to assembly (DLL) packages in output directory.";
public const string CmdIncludeSymbolsDescription = "Include packages with symbols in addition to regular packages in output directory.";
public const string CmdIncludeSourceDescription = "Include PDBs and source files. Source files go into the src folder in the resulting nuget package";
public const string CmdConfig = "CONFIGURATION";
public const string CmdConfigDescription = "Configuration to use for building the project. Default is \"Debug\".";
public const string CmdConfigDescription = "Configuration to use for building the project. Default for most projects is \"Debug\".";
public const string CmdVersionSuffix = "VERSION_SUFFIX";

View file

@ -24,7 +24,7 @@
public const string ConfigurationOption = "CONFIGURATION";
public const string ConfigurationOptionDescription = "Configuration to use for building the project. Default is \"Debug\".";
public const string ConfigurationOptionDescription = "Configuration to use for building the project. Default for most projects is \"Debug\".";
public const string VersionSuffixOption = "VERSION_SUFFIX";

View file

@ -6,11 +6,11 @@
public const string AppDescription = "Command used to run .NET apps";
public const string CommandOptionConfigurationDescription = "Configuration to use for building the project. Default is \"Debug\".";
public const string CommandOptionConfigurationDescription = "Configuration to use for building the project. Default for most projects is \"Debug\".";
public const string CommandOptionFramework = "FRAMEWORK";
public const string CommandOptionFrameworkDescription = "Build and run the specified framework. The framework has to be specified in the project file. ";
public const string CommandOptionFrameworkDescription = "Build and run the app using the specified framework. The framework has to be specified in the project file. ";
public const string CommandOptionProjectDescription = "The path to the project file to run (defaults to the current directory if there is only one project).";

View file

@ -36,7 +36,7 @@
public const string CmdConfiguration = "CONFIGURATION";
public const string CmdConfigDescription = "Configuration to use for building the project. Default is \"Debug\".";
public const string CmdConfigDescription = "Configuration to use for building the project. Default for most projects is \"Debug\".";
public const string CmdFramework = "FRAMEWORK";