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