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