19 references to BuildServerShutdownCommandParser
dotnet (4)
Commands\BuildServer\BuildServerCommandParser.cs (1)
27
command.Subcommands.Add(
BuildServerShutdownCommandParser
.GetCommand());
Commands\BuildServer\Shutdown\BuildServerShutdownCommand.cs (3)
28
bool msbuild = result.GetValue(
BuildServerShutdownCommandParser
.MSBuildOption);
29
bool vbcscompiler = result.GetValue(
BuildServerShutdownCommandParser
.VbcsOption);
30
bool razor = result.GetValue(
BuildServerShutdownCommandParser
.RazorOption);
dotnet.Tests (15)
CommandTests\BuildServer\Shutdown\BuildServerShutdownParserTests.cs (15)
23
result.GetValue<bool>(
BuildServerShutdownCommandParser
.MSBuildOption).Should().Be(false);
24
result.GetValue<bool>(
BuildServerShutdownCommandParser
.VbcsOption).Should().Be(false);
25
result.GetValue<bool>(
BuildServerShutdownCommandParser
.RazorOption).Should().Be(false);
33
result.GetValue<bool>(
BuildServerShutdownCommandParser
.MSBuildOption).Should().Be(true);
34
result.GetValue<bool>(
BuildServerShutdownCommandParser
.VbcsOption).Should().Be(false);
35
result.GetValue<bool>(
BuildServerShutdownCommandParser
.RazorOption).Should().Be(false);
43
result.GetValue<bool>(
BuildServerShutdownCommandParser
.MSBuildOption).Should().Be(false);
44
result.GetValue<bool>(
BuildServerShutdownCommandParser
.VbcsOption).Should().Be(true);
45
result.GetValue<bool>(
BuildServerShutdownCommandParser
.RazorOption).Should().Be(false);
53
result.GetValue<bool>(
BuildServerShutdownCommandParser
.MSBuildOption).Should().Be(false);
54
result.GetValue<bool>(
BuildServerShutdownCommandParser
.VbcsOption).Should().Be(false);
55
result.GetValue<bool>(
BuildServerShutdownCommandParser
.RazorOption).Should().Be(true);
63
result.GetValue<bool>(
BuildServerShutdownCommandParser
.MSBuildOption).Should().Be(true);
64
result.GetValue<bool>(
BuildServerShutdownCommandParser
.VbcsOption).Should().Be(false);
65
result.GetValue<bool>(
BuildServerShutdownCommandParser
.RazorOption).Should().Be(true);