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