6 implementations of GetAttributes
Microsoft.Build (5)
CachingFileSystemWrapper.cs (1)
29public FileAttributes GetAttributes(string path)
FileSystem\DirectoryCacheFileSystemWrapper.cs (1)
110public FileAttributes GetAttributes(string path) => _fileSystem.GetAttributes(path);
FileSystem\MSBuildFileSystemBase.cs (1)
65public virtual FileAttributes GetAttributes(string path) => FileSystems.Default.GetAttributes(path);
ManagedFileSystem.cs (1)
127public FileAttributes GetAttributes(string path)
MSBuildOnWindowsFileSystem.cs (1)
61public FileAttributes GetAttributes(string path)
Microsoft.Build.Engine.UnitTests (1)
FileMatcher_Tests.cs (1)
2650public FileAttributes GetAttributes(string path) => throw new NotImplementedException();
3 references to GetAttributes
Microsoft.Build (3)
CachingFileSystemWrapper.cs (1)
31return _fileSystem.GetAttributes(path);
FileSystem\DirectoryCacheFileSystemWrapper.cs (1)
110public FileAttributes GetAttributes(string path) => _fileSystem.GetAttributes(path);
FileSystem\MSBuildFileSystemBase.cs (1)
65public virtual FileAttributes GetAttributes(string path) => FileSystems.Default.GetAttributes(path);