From 614f71d19f69f3e2645ca1b3885de84a74eefadf Mon Sep 17 00:00:00 2001 From: jonsequitur Date: Thu, 2 Mar 2017 21:45:44 -0800 Subject: [PATCH] add help text for a couple of commands --- src/dotnet/dotnet-complete/commands/Create.cs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/dotnet/dotnet-complete/commands/Create.cs b/src/dotnet/dotnet-complete/commands/Create.cs index 0650a6079..72be2e7be 100644 --- a/src/dotnet/dotnet-complete/commands/Create.cs +++ b/src/dotnet/dotnet-complete/commands/Create.cs @@ -53,7 +53,8 @@ namespace Microsoft.DotNet.Tools.Complete o => int.Parse(o.Arguments.Single()))); private static Command Add() => - Command("add", "", + Command("add", + ".NET Add Command", ExactlyOneArgument, Package(), Reference(), @@ -103,7 +104,8 @@ namespace Microsoft.DotNet.Tools.Complete .WithSuggestionsFrom(_ => new[] { "DEBUG", "RELEASE" }))); private static Command List() => - Command("list", "", + Command("list", + ".NET List Command", ExactlyOneArgument .With(name: "PROJECT", description: @@ -304,7 +306,7 @@ namespace Microsoft.DotNet.Tools.Complete private static Command Remove() => Command("remove", - "", + ".NET Remove Command", HelpOption(), Command("package", "Command to remove package reference.",