3 implementations of ReadFileAllText
Microsoft.Build.Tasks.Core (3)
CachingFileSystemWrapper.cs (1)
64public string ReadFileAllText(string path)
ManagedFileSystem.cs (1)
49public string ReadFileAllText(string path)
MSBuildOnWindowsFileSystem.cs (1)
36public string ReadFileAllText(string path)
4 references to ReadFileAllText
Microsoft.Build.Tasks.Core (4)
CachingFileSystemWrapper.cs (1)
66return _fileSystem.ReadFileAllText(path);
ExceptionHandling.cs (1)
422builder.Append(FileSystems.Default.ReadFileAllText(file));
FileIO\WriteLinesToFile.cs (1)
114string existingContents = FileSystems.Default.ReadFileAllText(File.ItemSpec);
RoslynCodeTaskFactory\RoslynCodeTaskFactory.cs (1)
448taskInfo.SourceCode = FileSystems.Default.ReadFileAllText(sourceAttribute.Value.Trim());