Responding to PR feedback

This commit is contained in:
Zlatko Knezevic 2017-01-05 16:58:12 -08:00
parent 1a35ffdb10
commit af56e969f9
2 changed files with 6 additions and 7 deletions

View file

@ -159,6 +159,7 @@ namespace Microsoft.DotNet.Tools
public const string ArgumentsProjectDescription = "The project file to operate on. If a file is not specified, the command will search the current directory for one.";
public const string ArgumentsSolutionDescription = "Solution file to operate on. If not specified, the command will search the current directory for one.";
public const string CmdSlnFile = "<SLN_FILE>";
public const string CmdProjectFile = "<PROJECT>"
/// commands
public const string CmdFramework = "FRAMEWORK";

View file

@ -9,15 +9,13 @@ namespace Microsoft.DotNet.Tools.Sln
public const string AppDescription = "Command to add, remove, and list projects from the solution (SLN) file.";
public const string AppHelpText = "Projects to add to the solution.";
public const string AppHelpText = "Projects to add or to remove from the solution.";
public const string CmdSlnFile = "<SLN_FILE>";
public const string AddAppFullName = ".NET Add project to a solution file Command";
public const string AddSubcommandHelpText = "Add a specified project to the solution.";
public const string AddAppFullName = ".NET Add project(s) to a solution file Command";
public const string AddSubcommandHelpText = "Add a specified project(s) to the solution.";
public const string RemoveAppFullName = ".NET Remove project from a solution file Command";
public const string RemoveSubcommandHelpText = "Remove the specified project from the solution. The project is not impacted.";
public const string RemoveAppFullName = ".NET Remove project(s) from a solution file Command";
public const string RemoveSubcommandHelpText = "Remove the specified project(s) from the solution. The project is not impacted.";
public const string ListAppFullName = ".NET List project(s) in a solution file Command";
public const string ListSubcommandHelpText = "List all projects in the solution.";