6 implementations of ReadFileAllText
Microsoft.Build (2)
FileSystem\DirectoryCacheFileSystemWrapper.cs (1)
116public string ReadFileAllText(string path) => _fileSystem.ReadFileAllText(path);
FileSystem\MSBuildFileSystemBase.cs (1)
35public virtual string ReadFileAllText(string path) => FileSystems.Default.ReadFileAllText(path);
Microsoft.Build.Engine.UnitTests (1)
FileMatcher_Tests.cs (1)
2656public string ReadFileAllText(string path) => throw new NotImplementedException();
Microsoft.Build.Framework (3)
FileSystem\CachingFileSystemWrapper.cs (1)
63public string ReadFileAllText(string path)
FileSystem\ManagedFileSystem.cs (1)
45public string ReadFileAllText(string path)
FileSystem\MSBuildOnWindowsFileSystem.cs (1)
34public string ReadFileAllText(string path)
12 references to ReadFileAllText
Microsoft.Build (6)
BuildCheck\Infrastructure\EditorConfig\EditorConfigParser.cs (1)
55return EditorConfigFile.Parse(FileSystems.Default.ReadFileAllText(editorConfigFilePath));
Construction\ProjectRootElement.cs (1)
1997string contents = FileSystems.Default.ReadFileAllText(path);
Construction\Solution\SolutionFile.cs (1)
671JsonDocument text = JsonDocument.Parse(FileSystems.Default.ReadFileAllText(solutionFilterFile), options);
DebugUtils.cs (1)
316builder.Append(FileSystems.Default.ReadFileAllText(file));
FileSystem\DirectoryCacheFileSystemWrapper.cs (1)
116public string ReadFileAllText(string path) => _fileSystem.ReadFileAllText(path);
FileSystem\MSBuildFileSystemBase.cs (1)
35public virtual string ReadFileAllText(string path) => FileSystems.Default.ReadFileAllText(path);
Microsoft.Build.Engine.OM.UnitTests (1)
DebugUtils.cs (1)
316builder.Append(FileSystems.Default.ReadFileAllText(file));
Microsoft.Build.Framework (1)
FileSystem\CachingFileSystemWrapper.cs (1)
65return _fileSystem.ReadFileAllText(path);
Microsoft.Build.Tasks.Core (2)
DebugUtils.cs (1)
316builder.Append(FileSystems.Default.ReadFileAllText(file));
RoslynCodeTaskFactory\RoslynCodeTaskFactory.cs (1)
465taskInfo.SourceCode = FileSystems.Default.ReadFileAllText(resolvedPath);
Microsoft.Build.Utilities.Core (1)
DebugUtils.cs (1)
316builder.Append(FileSystems.Default.ReadFileAllText(file));
MSBuild (1)
DebugUtils.cs (1)
316builder.Append(FileSystems.Default.ReadFileAllText(file));