1 write to FilePath
BuildBoss (1)
ProjectKey.cs (1)
24FilePath = Path.GetFullPath(filePath);
10 references to FilePath
BuildBoss (10)
ProjectKey.cs (5)
20internal string FileName => FilePath != null ? Path.GetFileName(FilePath) : ""; 27public static bool operator ==(ProjectKey left, ProjectKey right) => StringComparer.OrdinalIgnoreCase.Equals(left.FilePath, right.FilePath); 31public override int GetHashCode() => FilePath?.GetHashCode() ?? 0;
ProjectUtil.cs (4)
28internal bool IsUnitTestProject => Path.GetFileNameWithoutExtension(Key.FilePath).EndsWith(".UnitTests"); 29internal bool IsIntegrationTestProject => Path.GetFileNameWithoutExtension(Key.FilePath).EndsWith(".IntegrationTests"); 79throw new InvalidOperationException($"Project {Key.FilePath} does not have a TargetFramework(s) element."); 115var directory = Path.GetDirectoryName(Key.FilePath);
SolutionCheckerUtil.cs (1)
156var directory = Path.GetDirectoryName(projectKey.FilePath);