6 implementations of ReadFile
Microsoft.Build (5)
CachingFileSystemWrapper.cs (1)
54public TextReader ReadFile(string path)
FileSystem\DirectoryCacheFileSystemWrapper.cs (1)
114public TextReader ReadFile(string path) => _fileSystem.ReadFile(path);
FileSystem\MSBuildFileSystemBase.cs (1)
27public virtual TextReader ReadFile(string path) => FileSystems.Default.ReadFile(path);
ManagedFileSystem.cs (1)
37public TextReader ReadFile(string path)
MSBuildOnWindowsFileSystem.cs (1)
26public TextReader ReadFile(string path)
Microsoft.Build.Engine.UnitTests (1)
FileMatcher_Tests.cs (1)
2627public TextReader ReadFile(string path) => throw new NotImplementedException();
3 references to ReadFile
Microsoft.Build (3)
CachingFileSystemWrapper.cs (1)
56return _fileSystem.ReadFile(path);
FileSystem\DirectoryCacheFileSystemWrapper.cs (1)
114public TextReader ReadFile(string path) => _fileSystem.ReadFile(path);
FileSystem\MSBuildFileSystemBase.cs (1)
27public virtual TextReader ReadFile(string path) => FileSystems.Default.ReadFile(path);