TeamCity.dotCover/IFileSystem.cs (
6
lines of code) (
raw
):
namespace TeamCity.dotCover; internal interface IFileSystem { bool FileExists(string path); IEnumerable<string> ReadFileLines(string path); }