6 implementations of ReadFileAllText
Microsoft.Build (5)
CachingFileSystemWrapper.cs (1)
64
public string
ReadFileAllText
(string path)
FileSystem\DirectoryCacheFileSystemWrapper.cs (1)
118
public string
ReadFileAllText
(string path) => _fileSystem.ReadFileAllText(path);
FileSystem\MSBuildFileSystemBase.cs (1)
37
public virtual string
ReadFileAllText
(string path) => FileSystems.Default.ReadFileAllText(path);
ManagedFileSystem.cs (1)
49
public string
ReadFileAllText
(string path)
MSBuildOnWindowsFileSystem.cs (1)
36
public string
ReadFileAllText
(string path)
Microsoft.Build.Engine.UnitTests (1)
FileMatcher_Tests.cs (1)
2656
public string
ReadFileAllText
(string path) => throw new NotImplementedException();
7 references to ReadFileAllText
Microsoft.Build (7)
BuildCheck\Infrastructure\EditorConfig\EditorConfigParser.cs (1)
55
return EditorConfigFile.Parse(FileSystems.Default.
ReadFileAllText
(editorConfigFilePath));
CachingFileSystemWrapper.cs (1)
66
return _fileSystem.
ReadFileAllText
(path);
Construction\ProjectRootElement.cs (1)
1997
string contents = FileSystems.Default.
ReadFileAllText
(path);
Construction\Solution\SolutionFile.cs (1)
672
JsonDocument text = JsonDocument.Parse(FileSystems.Default.
ReadFileAllText
(solutionFilterFile), options);
ExceptionHandling.cs (1)
422
builder.Append(FileSystems.Default.
ReadFileAllText
(file));
FileSystem\DirectoryCacheFileSystemWrapper.cs (1)
118
public string ReadFileAllText(string path) => _fileSystem.
ReadFileAllText
(path);
FileSystem\MSBuildFileSystemBase.cs (1)
37
public virtual string ReadFileAllText(string path) => FileSystems.Default.
ReadFileAllText
(path);