FileSystem\MSBuildFileSystemBase.cs (12)
27public virtual TextReader ReadFile(string path) => FileSystems.Default.ReadFile(path);
32public virtual Stream GetFileStream(string path, FileMode mode, FileAccess access, FileShare share) => FileSystems.Default.GetFileStream(path, mode, access, share);
37public virtual string ReadFileAllText(string path) => FileSystems.Default.ReadFileAllText(path);
42public virtual byte[] ReadFileAllBytes(string path) => FileSystems.Default.ReadFileAllBytes(path);
48=> FileSystems.Default.EnumerateFiles(path, searchPattern, searchOption);
54=> FileSystems.Default.EnumerateDirectories(path, searchPattern, searchOption);
60=> FileSystems.Default.EnumerateFileSystemEntries(path, searchPattern, searchOption);
65public virtual FileAttributes GetAttributes(string path) => FileSystems.Default.GetAttributes(path);
70public virtual DateTime GetLastWriteTimeUtc(string path) => FileSystems.Default.GetLastWriteTimeUtc(path);
75public virtual bool DirectoryExists(string path) => FileSystems.Default.DirectoryExists(path);
80public virtual bool FileExists(string path) => FileSystems.Default.FileExists(path);
85public virtual bool FileOrDirectoryExists(string path) => FileSystems.Default.FileOrDirectoryExists(path);
Instance\ProjectInstance.cs (3)
2238Expander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstance, ProjectItemInstance>(this, this, FileSystems.Default, _loggingContext);
2256Expander<ProjectPropertyInstance, ProjectItemInstance> expander = new Expander<ProjectPropertyInstance, ProjectItemInstance>(this, this, FileSystems.Default, _loggingContext);
2265FileSystems.Default,