list command help text fix
This commit is contained in:
parent
06ad3a686f
commit
11270a436b
2 changed files with 6 additions and 3 deletions
|
@ -2,6 +2,7 @@
|
|||
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
||||
|
||||
using Microsoft.DotNet.Cli.CommandLine;
|
||||
using LocalizableStrings = Microsoft.DotNet.Tools.List.ProjectToProjectReferences.LocalizableStrings;
|
||||
|
||||
namespace Microsoft.DotNet.Cli
|
||||
{
|
||||
|
@ -16,7 +17,8 @@ namespace Microsoft.DotNet.Cli
|
|||
"The project file to operate on. If a file is not specified, the command will search the current directory for one.")
|
||||
.DefaultToCurrentDirectory(),
|
||||
CommonOptions.HelpOption(),
|
||||
Create.Command("reference", "Command to list project to project references",
|
||||
Create.Command("reference",
|
||||
LocalizableStrings.AppFullName,
|
||||
Accept.ExactlyOneArgument(),
|
||||
CommonOptions.HelpOption()));
|
||||
}
|
||||
|
|
|
@ -21,7 +21,8 @@ Arguments:
|
|||
<PROJECT> The project file to operate on. If a file is not specified, the command will search the current directory for one.
|
||||
|
||||
Options:
|
||||
-h|--help Show help information";
|
||||
-h, --help Show help information
|
||||
";
|
||||
|
||||
const string FrameworkNet451Arg = "-f net451";
|
||||
const string ConditionFrameworkNet451 = "== 'net451'";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue