6 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.Engine.UnitTests (1)
FileMatcher_Tests.cs (1)
2675
public FileAttributes
GetAttributes
(string path) => throw new NotImplementedException();
Microsoft.Build.Framework (3)
FileSystem\CachingFileSystemWrapper.cs (1)
28
public FileAttributes
GetAttributes
(string path)
FileSystem\ManagedFileSystem.cs (1)
125
public FileAttributes
GetAttributes
(string path)
FileSystem\MSBuildOnWindowsFileSystem.cs (1)
59
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);