8 references to FilePrefix
dotnet (1)
BuildServer\BuildServerProvider.cs (1)
57Path.GetFileName(path).StartsWith(RazorPidFile.FilePrefix))
dotnet.Tests (7)
BuildServerTests\BuildServerProviderTests.cs (3)
105string pidFilePath = Path.Combine(pidDirectory, $"{RazorPidFile.FilePrefix}{ProcessId}"); 115Path.Combine(pidDirectory, $"{RazorPidFile.FilePrefix}not-a-pid-file"), 146string pidFilePath = Path.Combine(pidDirectory, $"{RazorPidFile.FilePrefix}{ProcessId}");
BuildServerTests\RazorServerTests.cs (3)
27string pidFilePath = Path.Combine(pidDirectory, $"{RazorPidFile.FilePrefix}{ProcessId}"); 66string pidFilePath = Path.Combine(pidDirectory, $"{RazorPidFile.FilePrefix}{ProcessId}"); 100string pidFilePath = Path.Combine(pidDirectory, $"{RazorPidFile.FilePrefix}{ProcessId}");
CommandTests\BuildServer\Shutdown\BuildServerShutdownCommandTests.cs (1)
177var files = Directory.GetFiles(pidDirectory, RazorPidFile.FilePrefix + "*");