6 implementations of ReadFileAllBytes
Microsoft.Build (5)
CachingFileSystemWrapper.cs (1)
69public byte[] ReadFileAllBytes(string path)
FileSystem\DirectoryCacheFileSystemWrapper.cs (1)
120public byte[] ReadFileAllBytes(string path) => _fileSystem.ReadFileAllBytes(path);
FileSystem\MSBuildFileSystemBase.cs (1)
42public virtual byte[] ReadFileAllBytes(string path) => FileSystems.Default.ReadFileAllBytes(path);
ManagedFileSystem.cs (1)
52public byte[] ReadFileAllBytes(string path)
MSBuildOnWindowsFileSystem.cs (1)
41public byte[] ReadFileAllBytes(string path)
Microsoft.Build.Engine.UnitTests (1)
FileMatcher_Tests.cs (1)
2633public byte[] ReadFileAllBytes(string path) => throw new NotImplementedException();
3 references to ReadFileAllBytes
Microsoft.Build (3)
CachingFileSystemWrapper.cs (1)
71return _fileSystem.ReadFileAllBytes(path);
FileSystem\DirectoryCacheFileSystemWrapper.cs (1)
120public byte[] ReadFileAllBytes(string path) => _fileSystem.ReadFileAllBytes(path);
FileSystem\MSBuildFileSystemBase.cs (1)
42public virtual byte[] ReadFileAllBytes(string path) => FileSystems.Default.ReadFileAllBytes(path);