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