Cassette.Manifests.AssetManifest.AllRawFileReferencesAreUpToDateWithFileSystem C# (CSharp) Method

AllRawFileReferencesAreUpToDateWithFileSystem() private method

private AllRawFileReferencesAreUpToDateWithFileSystem ( IDirectory directory, System.DateTime asOfDateTime ) : bool
directory IDirectory
asOfDateTime System.DateTime
return bool
        bool AllRawFileReferencesAreUpToDateWithFileSystem(IDirectory directory, DateTime asOfDateTime)
        {
            var files = RawFilenameReferences().Select(r => directory.GetFile(r.Path));
            return files.All(file => FileIsUpToDateWithFileSystem(file, asOfDateTime));
        }