4 implementations of ReadFileAllText
Microsoft.Build (2)
FileSystem\DirectoryCacheFileSystemWrapper.cs (1)
116
public string
ReadFileAllText
(string path) => _fileSystem.ReadFileAllText(path);
FileSystem\MSBuildFileSystemBase.cs (1)
35
public virtual string
ReadFileAllText
(string path) => FileSystems.Default.ReadFileAllText(path);
Microsoft.Build.Framework (2)
FileSystem\CachingFileSystemWrapper.cs (1)
63
public string
ReadFileAllText
(string path)
FileSystem\ManagedFileSystem.cs (1)
45
public string
ReadFileAllText
(string path)
11 references to ReadFileAllText
Microsoft.Build (6)
BuildCheck\Infrastructure\EditorConfig\EditorConfigParser.cs (1)
55
return EditorConfigFile.Parse(FileSystems.Default.
ReadFileAllText
(editorConfigFilePath));
Construction\ProjectRootElement.cs (1)
1991
string contents = FileSystems.Default.
ReadFileAllText
(path);
Construction\Solution\SolutionFile.cs (1)
671
JsonDocument text = JsonDocument.Parse(FileSystems.Default.
ReadFileAllText
(solutionFilterFile), options);
FileSystem\DirectoryCacheFileSystemWrapper.cs (1)
116
public string ReadFileAllText(string path) => _fileSystem.
ReadFileAllText
(path);
FileSystem\MSBuildFileSystemBase.cs (1)
35
public virtual string ReadFileAllText(string path) => FileSystems.Default.
ReadFileAllText
(path);
src\msbuild\src\Shared\Debugging\DebugUtils.cs (1)
182
builder.Append(FileSystems.Default.
ReadFileAllText
(file));
Microsoft.Build.Framework (1)
FileSystem\CachingFileSystemWrapper.cs (1)
65
return _fileSystem.
ReadFileAllText
(path);
Microsoft.Build.Tasks.Core (2)
RoslynCodeTaskFactory\RoslynCodeTaskFactory.cs (1)
476
taskInfo.SourceCode = FileSystems.Default.
ReadFileAllText
(resolvedPath);
src\msbuild\src\Shared\Debugging\DebugUtils.cs (1)
182
builder.Append(FileSystems.Default.
ReadFileAllText
(file));
Microsoft.Build.Utilities.Core (1)
src\msbuild\src\Shared\Debugging\DebugUtils.cs (1)
182
builder.Append(FileSystems.Default.
ReadFileAllText
(file));
MSBuild (1)
src\msbuild\src\Shared\Debugging\DebugUtils.cs (1)
182
builder.Append(FileSystems.Default.
ReadFileAllText
(file));