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