11 references to PidFile
dotnet (6)
BuildServer\RazorServer.cs (6)
19
public int ProcessId =>
PidFile
.ProcessId;
27
if (!_fileSystem.File.Exists(
PidFile
.ServerPath.Value))
39
PidFile
.ServerPath.Value,
43
PidFile
.PipeName
66
if (_fileSystem.File.Exists(
PidFile
.Path.Value))
68
_fileSystem.File.Delete(
PidFile
.Path.Value);
dotnet.Tests (5)
BuildServerTests\BuildServerProviderTests.cs (5)
130
razorServer.
PidFile
.Should().NotBeNull();
131
razorServer.
PidFile
.Path.Value.Should().Be(pidFilePath);
132
razorServer.
PidFile
.ProcessId.Should().Be(ProcessId);
133
razorServer.
PidFile
.ServerPath.Value.Should().Be(serverPath);
134
razorServer.
PidFile
.PipeName.Should().Be(PipeName);