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