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