FileSystem\MSBuildFileSystemBase.cs (12)
25public virtual TextReader ReadFile(string path) => FileSystems.Default.ReadFile(path);
30public virtual Stream GetFileStream(string path, FileMode mode, FileAccess access, FileShare share) => FileSystems.Default.GetFileStream(path, mode, access, share);
35public virtual string ReadFileAllText(string path) => FileSystems.Default.ReadFileAllText(path);
40public virtual byte[] ReadFileAllBytes(string path) => FileSystems.Default.ReadFileAllBytes(path);
46=> FileSystems.Default.EnumerateFiles(path, searchPattern, searchOption);
52=> FileSystems.Default.EnumerateDirectories(path, searchPattern, searchOption);
58=> FileSystems.Default.EnumerateFileSystemEntries(path, searchPattern, searchOption);
63public virtual FileAttributes GetAttributes(string path) => FileSystems.Default.GetAttributes(path);
68public virtual DateTime GetLastWriteTimeUtc(string path) => FileSystems.Default.GetLastWriteTimeUtc(path);
73public virtual bool DirectoryExists(string path) => FileSystems.Default.DirectoryExists(path);
78public virtual bool FileExists(string path) => FileSystems.Default.FileExists(path);
83public virtual bool FileOrDirectoryExists(string path) => FileSystems.Default.FileOrDirectoryExists(path);
Instance\ProjectInstance.cs (3)
2330Expander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstance, ProjectItemInstance>(this, this, FileSystems.Default, _loggingContext);
2348Expander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstance, ProjectItemInstance>(this, this, FileSystems.Default, _loggingContext);
2357FileSystems.Default,