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