3 implementations of ReadFileAllBytes
MSBuild (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)
4 references to ReadFileAllBytes
MSBuild (4)
CachingFileSystemWrapper.cs (1)
71return _fileSystem.ReadFileAllBytes(path);
TaskFactoryUtilities.cs (3)
162Assembly assembly = Assembly.Load(FileSystems.Default.ReadFileAllBytes(assemblyPath)); 256return Assembly.Load(FileSystems.Default.ReadFileAllBytes(path)); 264return Assembly.Load(FileSystems.Default.ReadFileAllBytes(path));