4 implementations of GetAttributes
Microsoft.Build (2)
FileSystem\DirectoryCacheFileSystemWrapper.cs (1)
108public FileAttributes GetAttributes(string path) => _fileSystem.GetAttributes(path);
FileSystem\MSBuildFileSystemBase.cs (1)
63public virtual FileAttributes GetAttributes(string path) => FileSystems.Default.GetAttributes(path);
Microsoft.Build.Framework (2)
FileSystem\CachingFileSystemWrapper.cs (1)
28public FileAttributes GetAttributes(string path)
FileSystem\ManagedFileSystem.cs (1)
125public FileAttributes GetAttributes(string path)
3 references to GetAttributes
Microsoft.Build (2)
FileSystem\DirectoryCacheFileSystemWrapper.cs (1)
108public FileAttributes GetAttributes(string path) => _fileSystem.GetAttributes(path);
FileSystem\MSBuildFileSystemBase.cs (1)
63public virtual FileAttributes GetAttributes(string path) => FileSystems.Default.GetAttributes(path);
Microsoft.Build.Framework (1)
FileSystem\CachingFileSystemWrapper.cs (1)
30return _fileSystem.GetAttributes(path);