10 references to Singleton
Microsoft.Build.Framework (10)
FileSystem\FileSystems.cs (1)
23return ManagedFileSystem.Singleton();
FileSystem\MSBuildOnWindowsFileSystem.cs (9)
26return ManagedFileSystem.Singleton().ReadFile(path); 31return ManagedFileSystem.Singleton().GetFileStream(path, mode, access, share); 36return ManagedFileSystem.Singleton().ReadFileAllText(path); 41return ManagedFileSystem.Singleton().ReadFileAllBytes(path); 46return ManagedFileSystem.Singleton().EnumerateFiles(path, searchPattern, searchOption); 51return ManagedFileSystem.Singleton().EnumerateDirectories(path, searchPattern, searchOption); 56return ManagedFileSystem.Singleton().EnumerateFileSystemEntries(path, searchPattern, searchOption); 61return ManagedFileSystem.Singleton().GetAttributes(path); 66return ManagedFileSystem.Singleton().GetLastWriteTimeUtc(path);