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)
54
public byte[]
ReadFileAllBytes
(string path)
MSBuildOnWindowsFileSystem.cs (1)
41
public byte[]
ReadFileAllBytes
(string path)
Microsoft.Build.Engine.UnitTests (1)
FileMatcher_Tests.cs (1)
2658
public byte[]
ReadFileAllBytes
(string path) => throw new NotImplementedException();
6 references to ReadFileAllBytes
Microsoft.Build (6)
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);
TaskFactoryUtilities.cs (3)
182
Assembly assembly = Assembly.Load(FileSystems.Default.
ReadFileAllBytes
(assemblyPath));
275
return Assembly.Load(FileSystems.Default.
ReadFileAllBytes
(path));
283
return Assembly.Load(FileSystems.Default.
ReadFileAllBytes
(path));