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