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