Merge pull request #9089 from peterhuene/buildserver-command-rename

Rename buildserver command.
This commit is contained in:
Peter Huene 2018-04-18 11:42:54 -07:00 committed by GitHub
commit 8e01912b36
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 17 additions and 17 deletions

View file

@ -151,7 +151,7 @@ namespace Microsoft.DotNet.Cli
Command = ToolCommand.Run,
DocLink = "https://aka.ms/dotnet-tool"
},
["buildserver"] = new BuiltInCommandMetadata
["build-server"] = new BuiltInCommandMetadata
{
Command = BuildServerCommand.Run,
DocLink = "https://aka.ms/dotnet-build-server"

View file

@ -12,7 +12,7 @@ namespace Microsoft.DotNet.Tools.BuildServer
{
public class BuildServerCommand : DotNetTopLevelCommandBase
{
protected override string CommandName => "buildserver";
protected override string CommandName => "build-server";
protected override string FullCommandNameLocalized => LocalizableStrings.BuildServerCommandName;
protected override string ArgumentName => "";
protected override string ArgumentDescriptionLocalized => "";

View file

@ -11,7 +11,7 @@ namespace Microsoft.DotNet.Cli
public static Command CreateCommand()
{
return Create.Command(
"buildserver",
"build-server",
LocalizableStrings.CommandDescription,
Accept.NoArguments(),
CommonOptions.HelpOption(),

View file

@ -29,7 +29,7 @@ path-to-application:
vstest {LocalizableStrings.VsTestDefinition}
store {LocalizableStrings.StoreDefinition}
tool {LocalizableStrings.ToolDefinition}
buildserver {LocalizableStrings.BuildServerDefinition}
build-server {LocalizableStrings.BuildServerDefinition}
help {LocalizableStrings.HelpDefinition}
{LocalizableStrings.CommonOptions}:

View file

@ -40,7 +40,7 @@ SDK commands:
vstest Runs Microsoft Test Execution Command Line Tool.
store Stores the specified assemblies in the runtime store.
tool Install or work with tools that extend the .NET experience.
buildserver Interact with servers started by a build.
build-server Interact with servers started by a build.
help Show help.
Common options:

View file

@ -172,9 +172,9 @@ namespace Microsoft.DotNet.Tests.Commands
private BuildServerShutdownCommand CreateCommand(string options = "", IEnumerable<IBuildServerManager> managers = null)
{
ParseResult result = Parser.Instance.Parse("dotnet buildserver shutdown " + options);
ParseResult result = Parser.Instance.Parse("dotnet build-server shutdown " + options);
return new BuildServerShutdownCommand(
options: result["dotnet"]["buildserver"]["shutdown"],
options: result["dotnet"]["build-server"]["shutdown"],
result: result,
managers: managers,
useOrderedWait: true,

View file

@ -23,9 +23,9 @@ namespace Microsoft.DotNet.Tests.ParserTests
[Fact]
public void GivenNoOptionsAllFlagsAreFalse()
{
var result = Parser.Instance.Parse("dotnet buildserver shutdown");
var result = Parser.Instance.Parse("dotnet build-server shutdown");
var options = result["dotnet"]["buildserver"]["shutdown"];
var options = result["dotnet"]["build-server"]["shutdown"];
options.ValueOrDefault<bool>("msbuild").Should().Be(false);
options.ValueOrDefault<bool>("vbcscompiler").Should().Be(false);
options.ValueOrDefault<bool>("razor").Should().Be(false);
@ -34,9 +34,9 @@ namespace Microsoft.DotNet.Tests.ParserTests
[Fact]
public void GivenMSBuildOptionIsItTrue()
{
var result = Parser.Instance.Parse("dotnet buildserver shutdown --msbuild");
var result = Parser.Instance.Parse("dotnet build-server shutdown --msbuild");
var options = result["dotnet"]["buildserver"]["shutdown"];
var options = result["dotnet"]["build-server"]["shutdown"];
options.ValueOrDefault<bool>("msbuild").Should().Be(true);
options.ValueOrDefault<bool>("vbcscompiler").Should().Be(false);
options.ValueOrDefault<bool>("razor").Should().Be(false);
@ -45,9 +45,9 @@ namespace Microsoft.DotNet.Tests.ParserTests
[Fact]
public void GivenVBCSCompilerOptionIsItTrue()
{
var result = Parser.Instance.Parse("dotnet buildserver shutdown --vbcscompiler");
var result = Parser.Instance.Parse("dotnet build-server shutdown --vbcscompiler");
var options = result["dotnet"]["buildserver"]["shutdown"];
var options = result["dotnet"]["build-server"]["shutdown"];
options.ValueOrDefault<bool>("msbuild").Should().Be(false);
options.ValueOrDefault<bool>("vbcscompiler").Should().Be(true);
options.ValueOrDefault<bool>("razor").Should().Be(false);
@ -56,9 +56,9 @@ namespace Microsoft.DotNet.Tests.ParserTests
[Fact]
public void GivenRazorOptionIsItTrue()
{
var result = Parser.Instance.Parse("dotnet buildserver shutdown --razor");
var result = Parser.Instance.Parse("dotnet build-server shutdown --razor");
var options = result["dotnet"]["buildserver"]["shutdown"];
var options = result["dotnet"]["build-server"]["shutdown"];
options.ValueOrDefault<bool>("msbuild").Should().Be(false);
options.ValueOrDefault<bool>("vbcscompiler").Should().Be(false);
options.ValueOrDefault<bool>("razor").Should().Be(true);
@ -67,9 +67,9 @@ namespace Microsoft.DotNet.Tests.ParserTests
[Fact]
public void GivenMultipleOptionsThoseAreTrue()
{
var result = Parser.Instance.Parse("dotnet buildserver shutdown --razor --msbuild");
var result = Parser.Instance.Parse("dotnet build-server shutdown --razor --msbuild");
var options = result["dotnet"]["buildserver"]["shutdown"];
var options = result["dotnet"]["build-server"]["shutdown"];
options.ValueOrDefault<bool>("msbuild").Should().Be(true);
options.ValueOrDefault<bool>("vbcscompiler").Should().Be(false);
options.ValueOrDefault<bool>("razor").Should().Be(true);