3 implementations of ReadFileAllBytes
Microsoft.Build.Tasks.Core (3)
CachingFileSystemWrapper.cs (1)
69public byte[] ReadFileAllBytes(string path)
ManagedFileSystem.cs (1)
54public byte[] ReadFileAllBytes(string path)
MSBuildOnWindowsFileSystem.cs (1)
41public byte[] ReadFileAllBytes(string path)
6 references to ReadFileAllBytes
Microsoft.Build.Tasks.Core (6)
CachingFileSystemWrapper.cs (1)
71return _fileSystem.ReadFileAllBytes(path);
ResourceHandling\MSBuildResXReader.cs (2)
269byte[] byteArray = FileSystems.Default.ReadFileAllBytes(fileName); 278byte[] byteArray = FileSystems.Default.ReadFileAllBytes(fileName);
TaskFactoryUtilities.cs (3)
182Assembly assembly = Assembly.Load(FileSystems.Default.ReadFileAllBytes(assemblyPath)); 275return Assembly.Load(FileSystems.Default.ReadFileAllBytes(path)); 283return Assembly.Load(FileSystems.Default.ReadFileAllBytes(path));