6 implementations of ReadFileAllText
Microsoft.Build (5)
CachingFileSystemWrapper.cs (1)
64
public string
ReadFileAllText
(string path)
FileSystem\DirectoryCacheFileSystemWrapper.cs (1)
118
public string
ReadFileAllText
(string path) => _fileSystem.ReadFileAllText(path);
FileSystem\MSBuildFileSystemBase.cs (1)
37
public virtual string
ReadFileAllText
(string path) => FileSystems.Default.ReadFileAllText(path);
ManagedFileSystem.cs (1)
47
public string
ReadFileAllText
(string path)
MSBuildOnWindowsFileSystem.cs (1)
36
public string
ReadFileAllText
(string path)
Microsoft.Build.Engine.UnitTests (1)
FileMatcher_Tests.cs (1)
2631
public string
ReadFileAllText
(string path) => throw new NotImplementedException();
3 references to ReadFileAllText
Microsoft.Build (3)
CachingFileSystemWrapper.cs (1)
66
return _fileSystem.
ReadFileAllText
(path);
FileSystem\DirectoryCacheFileSystemWrapper.cs (1)
118
public string ReadFileAllText(string path) => _fileSystem.
ReadFileAllText
(path);
FileSystem\MSBuildFileSystemBase.cs (1)
37
public virtual string ReadFileAllText(string path) => FileSystems.Default.
ReadFileAllText
(path);