6 implementations of ReadFileAllBytes
Microsoft.Build (2)
FileSystem\DirectoryCacheFileSystemWrapper.cs (1)
118public byte[] ReadFileAllBytes(string path) => _fileSystem.ReadFileAllBytes(path);
FileSystem\MSBuildFileSystemBase.cs (1)
40public virtual byte[] ReadFileAllBytes(string path) => FileSystems.Default.ReadFileAllBytes(path);
Microsoft.Build.Framework (3)
FileSystem\CachingFileSystemWrapper.cs (1)
68public byte[] ReadFileAllBytes(string path)
FileSystem\ManagedFileSystem.cs (1)
50public byte[] ReadFileAllBytes(string path)
FileSystem\MSBuildOnWindowsFileSystem.cs (1)
39public byte[] ReadFileAllBytes(string path)
Microsoft.Build.Framework.UnitTests (1)
FileMatcher_Tests.cs (1)
2658public byte[] ReadFileAllBytes(string path) => throw new NotImplementedException();
8 references to ReadFileAllBytes
Microsoft.Build (2)
FileSystem\DirectoryCacheFileSystemWrapper.cs (1)
118public byte[] ReadFileAllBytes(string path) => _fileSystem.ReadFileAllBytes(path);
FileSystem\MSBuildFileSystemBase.cs (1)
40public virtual byte[] ReadFileAllBytes(string path) => FileSystems.Default.ReadFileAllBytes(path);
Microsoft.Build.Framework (4)
FileSystem\CachingFileSystemWrapper.cs (1)
70return _fileSystem.ReadFileAllBytes(path);
Utilities\TaskFactoryUtilities.cs (3)
166Assembly assembly = Assembly.Load(FileSystems.Default.ReadFileAllBytes(assemblyPath)); 260return Assembly.Load(FileSystems.Default.ReadFileAllBytes(path)); 268return Assembly.Load(FileSystems.Default.ReadFileAllBytes(path));
Microsoft.Build.Tasks.Core (2)
ResourceHandling\MSBuildResXReader.cs (2)
270byte[] byteArray = FileSystems.Default.ReadFileAllBytes(fileName); 279byte[] byteArray = FileSystems.Default.ReadFileAllBytes(fileName);