Fix wrong ListDefinition

This commit is contained in:
William Li 2017-04-10 22:31:40 -07:00
parent 1ccf02e226
commit 06f597b8e4
3 changed files with 6 additions and 4 deletions

View file

@ -1,4 +1,4 @@
using Microsoft.DotNet.Tools.Help; using Microsoft.DotNet.Tools.Help;
internal static class HelpUsageText internal static class HelpUsageText
{ {
@ -35,7 +35,7 @@ $@"{LocalizableStrings.Usage}: dotnet [host-options] [command] [arguments] [comm
{LocalizableStrings.ProjectModificationCommands}: {LocalizableStrings.ProjectModificationCommands}:
add {LocalizableStrings.AddDefinition} add {LocalizableStrings.AddDefinition}
remove {LocalizableStrings.RemoveDefinition} remove {LocalizableStrings.RemoveDefinition}
list {LocalizableStrings.RemoveDefinition} list {LocalizableStrings.ListDefinition}
{LocalizableStrings.AdvancedCommands}: {LocalizableStrings.AdvancedCommands}:
nuget {LocalizableStrings.NugetDefinition} nuget {LocalizableStrings.NugetDefinition}

View file

@ -55,6 +55,8 @@ namespace Microsoft.DotNet.Tools.Help
public const string RemoveDefinition = "Remove items from the project."; public const string RemoveDefinition = "Remove items from the project.";
public const string ListDefinition = "List items in the project.";
public const string AdvancedCommands = "Advanced Commands"; public const string AdvancedCommands = "Advanced Commands";
public const string NugetDefinition = "Provides additional NuGet commands."; public const string NugetDefinition = "Provides additional NuGet commands.";

View file

@ -1,4 +1,4 @@
// Copyright (c) .NET Foundation and contributors. All rights reserved. // Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information. // Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System; using System;
@ -47,7 +47,7 @@ Commands:
Project modification commands: Project modification commands:
add Add items to the project. add Add items to the project.
remove Remove items from the project. remove Remove items from the project.
list Remove items from the project. list List items in the project.
Advanced Commands: Advanced Commands:
nuget Provides additional NuGet commands. nuget Provides additional NuGet commands.