1 instantiation of RazorPidFile
dotnet (1)
BuildServer\RazorPidFile.cs (1)
58return new RazorPidFile(path, processId, new FilePath(serverPath), pipeName);
7 references to RazorPidFile
dotnet (7)
BuildServer\BuildServerProvider.cs (4)
57Path.GetFileName(path).StartsWith(RazorPidFile.FilePrefix)) 59var file = ReadRazorPidFile(new FilePath(path)); 83private RazorPidFile ReadRazorPidFile(FilePath path) 87return RazorPidFile.Read(path, _fileSystem);
BuildServer\RazorPidFile.cs (1)
23public static RazorPidFile Read(FilePath path, IFileSystem fileSystem = null)
BuildServer\RazorServer.cs (2)
12RazorPidFile pidFile, 23public RazorPidFile PidFile { get; } = pidFile ?? throw new ArgumentNullException(nameof(pidFile));