private bool IsRelevantForSonar(string fileName) { return(!ExcludedCover.Contains(GetFileNameWithoutExtension(fileName))); }
bool IsRelevantForSonar(string fileName) => !ExcludedCover.Contains(GetFileNameWithoutExtension(fileName));