10 references to Singleton
Microsoft.Build (10)
FileSystems.cs (1)
26return ManagedFileSystem.Singleton();
MSBuildOnWindowsFileSystem.cs (9)
28return ManagedFileSystem.Singleton().ReadFile(path); 33return ManagedFileSystem.Singleton().GetFileStream(path, mode, access, share); 38return ManagedFileSystem.Singleton().ReadFileAllText(path); 43return ManagedFileSystem.Singleton().ReadFileAllBytes(path); 48return ManagedFileSystem.Singleton().EnumerateFiles(path, searchPattern, searchOption); 53return ManagedFileSystem.Singleton().EnumerateDirectories(path, searchPattern, searchOption); 58return ManagedFileSystem.Singleton().EnumerateFileSystemEntries(path, searchPattern, searchOption); 63return ManagedFileSystem.Singleton().GetAttributes(path); 68return ManagedFileSystem.Singleton().GetLastWriteTimeUtc(path);