// Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. namespace Microsoft.Build.Shared.FileSystem { /// /// Factory for /// internal static class FileSystems { public static IFileSystem Default = GetFileSystem(); private static IFileSystem GetFileSystem() { #if CLR2COMPATIBILITY return MSBuildTaskHostFileSystem.Singleton(); #else if (NativeMethodsShared.IsWindows) { return MSBuildOnWindowsFileSystem.Singleton(); } else { return ManagedFileSystem.Singleton(); } #endif } } }