diff --git a/test/dotnet-add-reference.Tests/GivenDotnetAddReference.cs b/test/dotnet-add-reference.Tests/GivenDotnetAddReference.cs index 42545e31c..239761d82 100644 --- a/test/dotnet-add-reference.Tests/GivenDotnetAddReference.cs +++ b/test/dotnet-add-reference.Tests/GivenDotnetAddReference.cs @@ -15,9 +15,7 @@ namespace Microsoft.DotNet.Cli.Add.Reference.Tests { public class GivenDotnetAddReference : TestBase { - private const string HelpText = @".NET Add Project to Project reference Command - -Usage: dotnet add reference [options] + private const string HelpText = @"Usage: dotnet add reference [options] Arguments: The project file to operate on. If a file is not specified, the command will search the current directory for one. @@ -28,9 +26,7 @@ Options: -f, --framework Add reference only when targeting a specific framework "; - private const string AddCommandHelpText = @".NET Add Command - -Usage: dotnet add [options] [command] + private const string AddCommandHelpText = @"Usage: dotnet add [options] [command] Arguments: The project file to operate on. If a file is not specified, the command will search the current directory for one. diff --git a/test/dotnet-help.Tests/GivenThatIWantToShowHelpForDotnetHelpCommand.cs b/test/dotnet-help.Tests/GivenThatIWantToShowHelpForDotnetHelpCommand.cs index ab13b7f9c..7561f1b3e 100644 --- a/test/dotnet-help.Tests/GivenThatIWantToShowHelpForDotnetHelpCommand.cs +++ b/test/dotnet-help.Tests/GivenThatIWantToShowHelpForDotnetHelpCommand.cs @@ -11,9 +11,7 @@ namespace Microsoft.DotNet.Help.Tests public class GivenThatIWantToShowHelpForDotnetHelpCommand : TestBase { private const string HelpText = -@".NET CLI help utility - -Usage: dotnet help [options] +@"Usage: dotnet help [options] Arguments: CLI command for which to view more detailed help. diff --git a/test/dotnet-list-reference.Tests/GivenDotnetListReference.cs b/test/dotnet-list-reference.Tests/GivenDotnetListReference.cs index 7d55ff688..fcdd6c54c 100644 --- a/test/dotnet-list-reference.Tests/GivenDotnetListReference.cs +++ b/test/dotnet-list-reference.Tests/GivenDotnetListReference.cs @@ -14,9 +14,7 @@ namespace Microsoft.DotNet.Cli.List.Reference.Tests { public class GivenDotnetListReference : TestBase { - private const string HelpText = @".NET Core Project-to-Project dependency viewer - -Usage: dotnet list reference [options] + private const string HelpText = @"Usage: dotnet list reference [options] Arguments: The project file to operate on. If a file is not specified, the command will search the current directory for one. @@ -25,9 +23,7 @@ Options: -h, --help Show help information. "; - private const string ListCommandHelpText = @".NET List Command - -Usage: dotnet list [options] [command] + private const string ListCommandHelpText = @"Usage: dotnet list [options] [command] Arguments: The project file to operate on. If a file is not specified, the command will search the current directory for one. diff --git a/test/dotnet-remove-package.Tests/GivenDotnetRemovePackage.cs b/test/dotnet-remove-package.Tests/GivenDotnetRemovePackage.cs index 43dd1af98..0ff55170f 100644 --- a/test/dotnet-remove-package.Tests/GivenDotnetRemovePackage.cs +++ b/test/dotnet-remove-package.Tests/GivenDotnetRemovePackage.cs @@ -12,9 +12,7 @@ namespace Microsoft.DotNet.Cli.Remove.Package.Tests { public class GivenDotnetRemovePackage : TestBase { - private const string HelpText = @".NET Remove Package reference Command. - -Usage: dotnet remove package [options] + private const string HelpText = @"Usage: dotnet remove package [options] Arguments: The project file to operate on. If a file is not specified, the command will search the current directory for one. @@ -24,9 +22,7 @@ Options: -h, --help Show help information. "; - private const string RemoveCommandHelpText = @".NET Remove Command - -Usage: dotnet remove [options] [command] + private const string RemoveCommandHelpText = @"Usage: dotnet remove [options] [command] Arguments: The project file to operate on. If a file is not specified, the command will search the current directory for one. diff --git a/test/dotnet-remove-reference.Tests/GivenDotnetRemoveP2P.cs b/test/dotnet-remove-reference.Tests/GivenDotnetRemoveP2P.cs index 0a61664fc..5411f2898 100644 --- a/test/dotnet-remove-reference.Tests/GivenDotnetRemoveP2P.cs +++ b/test/dotnet-remove-reference.Tests/GivenDotnetRemoveP2P.cs @@ -14,9 +14,7 @@ namespace Microsoft.DotNet.Cli.Remove.Reference.Tests { public class GivenDotnetRemoveReference : TestBase { - private const string HelpText = @".NET Remove Project to Project reference Command - -Usage: dotnet remove reference [options] + private const string HelpText = @"Usage: dotnet remove reference [options] Arguments: The project file to operate on. If a file is not specified, the command will search the current directory for one. @@ -27,9 +25,7 @@ Options: -f, --framework Remove reference only when targeting a specific framework "; - private const string RemoveCommandHelpText = @".NET Remove Command - -Usage: dotnet remove [options] [command] + private const string RemoveCommandHelpText = @"Usage: dotnet remove [options] [command] Arguments: The project file to operate on. If a file is not specified, the command will search the current directory for one. diff --git a/test/dotnet-sln-add.Tests/GivenDotnetSlnAdd.cs b/test/dotnet-sln-add.Tests/GivenDotnetSlnAdd.cs index af2678e06..b35b7950a 100644 --- a/test/dotnet-sln-add.Tests/GivenDotnetSlnAdd.cs +++ b/test/dotnet-sln-add.Tests/GivenDotnetSlnAdd.cs @@ -16,9 +16,7 @@ namespace Microsoft.DotNet.Cli.Sln.Add.Tests { public class GivenDotnetSlnAdd : TestBase { - private string HelpText = @".NET Add project(s) to a solution file Command - -Usage: dotnet sln add [options] + private string HelpText = @"Usage: dotnet sln add [options] Arguments: Solution file to operate on. If not specified, the command will search the current directory for one. @@ -28,9 +26,7 @@ Options: -h, --help Show help information. "; - private const string SlnCommandHelpText = @".NET modify solution file command - -Usage: dotnet sln [options] [command] + private const string SlnCommandHelpText = @"Usage: dotnet sln [options] [command] Arguments: Solution file to operate on. If not specified, the command will search the current directory for one. diff --git a/test/dotnet-sln-list.Tests/GivenDotnetSlnList.cs b/test/dotnet-sln-list.Tests/GivenDotnetSlnList.cs index e0800974d..c0cbd6047 100644 --- a/test/dotnet-sln-list.Tests/GivenDotnetSlnList.cs +++ b/test/dotnet-sln-list.Tests/GivenDotnetSlnList.cs @@ -14,9 +14,7 @@ namespace Microsoft.DotNet.Cli.Sln.List.Tests { public class GivenDotnetSlnList : TestBase { - private const string HelpText = @".NET List project(s) in a solution file Command - -Usage: dotnet sln list [options] + private const string HelpText = @"Usage: dotnet sln list [options] Arguments: Solution file to operate on. If not specified, the command will search the current directory for one. @@ -25,9 +23,7 @@ Options: -h, --help Show help information. "; - private const string SlnCommandHelpText = @".NET modify solution file command - -Usage: dotnet sln [options] [command] + private const string SlnCommandHelpText = @"Usage: dotnet sln [options] [command] Arguments: Solution file to operate on. If not specified, the command will search the current directory for one. diff --git a/test/dotnet-sln-remove.Tests/GivenDotnetSlnRemove.cs b/test/dotnet-sln-remove.Tests/GivenDotnetSlnRemove.cs index f0d190fbb..095d1e375 100644 --- a/test/dotnet-sln-remove.Tests/GivenDotnetSlnRemove.cs +++ b/test/dotnet-sln-remove.Tests/GivenDotnetSlnRemove.cs @@ -14,9 +14,7 @@ namespace Microsoft.DotNet.Cli.Sln.Remove.Tests { public class GivenDotnetSlnRemove : TestBase { - private const string HelpText = @".NET Remove project(s) from a solution file Command - -Usage: dotnet sln remove [options] + private const string HelpText = @"Usage: dotnet sln remove [options] Arguments: Solution file to operate on. If not specified, the command will search the current directory for one. @@ -26,9 +24,7 @@ Options: -h, --help Show help information. "; - private const string SlnCommandHelpText = @".NET modify solution file command - -Usage: dotnet sln [options] [command] + private const string SlnCommandHelpText = @"Usage: dotnet sln [options] [command] Arguments: Solution file to operate on. If not specified, the command will search the current directory for one.