3 implementations of Shutdown
dotnet (3)
BuildServer\MSBuildServer.cs (1)
16public void Shutdown()
BuildServer\RazorServer.cs (1)
25public void Shutdown()
BuildServer\VBCSCompilerServer.cs (1)
31public void Shutdown()
4 references to Shutdown
dotnet (1)
Commands\BuildServer\Shutdown\BuildServerShutdownCommand.cs (1)
93tasks.Add((server, Task.Run(() => server.Shutdown())));
dotnet.Tests (3)
CommandTests\BuildServer\Shutdown\BuildServerShutdownCommandTests.cs (3)
220mock.Setup(s => s.Shutdown()); 224mock.Setup(s => s.Shutdown()).Throws(new Exception(exceptionMessage)); 234mock.Verify(s => s.Shutdown(), Times.Once);