Merge pull request #9028 from livarcocc/add_remove_messages

Updating the description of add/remove nuget packages and references and list
This commit is contained in:
Livar 2018-05-07 11:24:58 -07:00 committed by GitHub
commit 6cc9ce45e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
76 changed files with 150 additions and 150 deletions

View file

@ -15,11 +15,11 @@ namespace Microsoft.DotNet.Cli.Add.Reference.Tests
{
public class GivenDotnetAddReference : TestBase
{
private const string HelpText = @"Usage: dotnet add <PROJECT> reference [options] <args>
private const string HelpText = @"Usage: dotnet add <PROJECT> reference [options] <PROJECT_PATH>
Arguments:
<PROJECT> The project file to operate on. If a file is not specified, the command will search the current directory for one.
<args> Project to project references to add
<PROJECT> The project file to operate on. If a file is not specified, the command will search the current directory for one.
<PROJECT_PATH> Project to project references to add
Options:
-h, --help Show help information.
@ -35,8 +35,8 @@ Options:
-h, --help Show help information.
Commands:
package <PACKAGE_NAME> .NET Add Package reference Command
reference <args> .NET Add Project to Project reference Command
package <PACKAGE_NAME> Add a NuGet package reference to the project.
reference <PROJECT_PATH> Add a project-to-project reference to the project.
";
const string FrameworkNet451Arg = "-f net451";

View file

@ -32,7 +32,7 @@ Options:
-h, --help Show help information.
Commands:
reference .NET Core Project-to-Project dependency viewer
reference List all project-to-project references of the project.
";
const string FrameworkNet451Arg = "-f net451";

View file

@ -31,8 +31,8 @@ Options:
-h, --help Show help information.
Commands:
package <PACKAGE_NAME> .NET Remove Package reference Command.
reference <args> .NET Remove Project to Project reference Command
package <PACKAGE_NAME> Remove a NuGet package reference from the project.
reference <PROJECT_PATH> Remove a project-to-project reference from the project.
";
[Theory]

View file

@ -14,11 +14,11 @@ namespace Microsoft.DotNet.Cli.Remove.Reference.Tests
{
public class GivenDotnetRemoveReference : TestBase
{
private const string HelpText = @"Usage: dotnet remove <PROJECT> reference [options] <args>
private const string HelpText = @"Usage: dotnet remove <PROJECT> reference [options] <PROJECT_PATH>
Arguments:
<PROJECT> The project file to operate on. If a file is not specified, the command will search the current directory for one.
<args> Project to project references to remove
<PROJECT> The project file to operate on. If a file is not specified, the command will search the current directory for one.
<PROJECT_PATH> Project to project references to remove
Options:
-h, --help Show help information.
@ -34,8 +34,8 @@ Options:
-h, --help Show help information.
Commands:
package <PACKAGE_NAME> .NET Remove Package reference Command.
reference <args> .NET Remove Project to Project reference Command
package <PACKAGE_NAME> Remove a NuGet package reference from the project.
reference <PROJECT_PATH> Remove a project-to-project reference from the project.
";
const string FrameworkNet451Arg = "-f net451";