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)
182Assembly assembly = Assembly.Load(FileSystems.Default.ReadFileAllBytes(assemblyPath)); 275return Assembly.Load(FileSystems.Default.ReadFileAllBytes(path)); 283return Assembly.Load(FileSystems.Default.ReadFileAllBytes(path));