Singulink.FulcrumFS 1.0.6

Prefix Reserved
dotnet add package Singulink.FulcrumFS --version 1.0.6
                    
NuGet\Install-Package Singulink.FulcrumFS -Version 1.0.6
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Singulink.FulcrumFS" Version="1.0.6" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Singulink.FulcrumFS" Version="1.0.6" />
                    
Directory.Packages.props
<PackageReference Include="Singulink.FulcrumFS" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Singulink.FulcrumFS --version 1.0.6
                    
#r "nuget: Singulink.FulcrumFS, 1.0.6"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Singulink.FulcrumFS@1.0.6
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Singulink.FulcrumFS&version=1.0.6
                    
Install as a Cake Addin
#tool nuget:?package=Singulink.FulcrumFS&version=1.0.6
                    
Install as a Cake Tool

FulcrumFS

Chat on Discord

FulcrumFS is a high-performance file processing pipeline and storage engine that layers on top of any file system, transforming standard directories into transactional file repositories with database-aligned commit semantics and file variant management.

While it serves as a key component of our upcoming FulcrumDB database engine, it is also designed to function independently, bringing robust file handling to any application or database. FulcrumFS is especially well-suited for managing user-uploaded content such as documents, images and videos, offering strong guarantees around consistency and integrity.

Details of each component are provided below:

Library Status Package
Singulink.FulcrumFS Public View nuget package
Singulink.FulcrumFS.Core Public View nuget package
Singulink.FulcrumFS.Documents Public View nuget package
Singulink.FulcrumFS.Images Public View nuget package
Singulink.FulcrumFS.Pdf Public View nuget package
Singulink.FulcrumFS.Videos Public View nuget package

Supported Runtimes: .NET 10.0+

Libraries may be in the following states:

  • Internal: Source code (and possibly a nuget package) is available but the library is intended for internal use at this time.
  • Preview: Library is available for public preview but the APIs may not be fully documented and the API surface is subject to change without notice.
  • Public: Library is intended for public use with a fully documented and stable API surface.

You are welcome to use any libraries or code in this repository that you find useful and feedback/contributions are appreciated regardless of library state.

We are a small team of engineers and designers dedicated to building beautiful, functional and well-engineered software solutions. We offer very competitive rates as well as fixed-price contracts and welcome inquiries to discuss any custom development / project support needs you may have.

This package is part of our Singulink Libraries collection. Visit https://github.com/Singulink to see our full list of publicly available libraries and other open-source projects.

Components

FulcrumFS

Main library that enables transactional file storage and processing, providing a foundation for building reliable file repositories on top of any file system.

Features:

✔️ Commit-then-cleanup coordination with transactional databases - orphaned files from failed commits are reclaimed automatically
✔️ No distributed transactions required - avoids 2PC coordinator overhead and indeterminate post-crash database states that block reopening
✔️ Validate, pre-process, and post-process files during storage and retrieval
✔️ Generate and manage file variants (e.g. alternate formats, resolutions, thumbnails)
✔️ Operates reliably on any file system, including local disks, NAS, and network file systems
✔️ Recovers gracefully from crashes, power failures and disconnected storage volumes
✔️ Scales to millions of files per repository while maintaining good file system performance characteristics
✔️ Provides direct FileStream access for efficient, low-overhead file I/O
✔️ Stored files remain browsable in standard file managers (e.g. File Explorer, Finder)
✔️ Fully compatible with file system features like encryption and compression
✔️ Designed to work seamlessly with existing backup, redundancy, replication, and storage tools

FulcrumFS.Core

A lightweight library that exposes the FileId type, repository paths, and the standalone FileFormat content validation API. It can be used independently of the main FulcrumFS library; for example, in a client application that needs to convert file IDs received from a service to a resulting path, or to pre-validate user-selected files in a front-end before uploading them to a service that hosts a FulcrumFS repository.

The FileFormat API ships with built-in singletons for common formats (Jpeg, Png, Pdf, Mp4, Mkv, Docx, Zip, and many more), factory methods for text formats (TextAscii, TextUnicode, TextEncoding) and content-agnostic types (AnyContent), and is extensible so you can derive your own FileFormat for custom formats. Validation returns a FileFormatValidationResult (valid or invalid with an error message) rather than throwing, so callers can handle outcomes however they prefer.

The main FulcrumFS library uses FileFormat via the FileFormatValidationProcessor, which integrates validation into a processing pipeline and converts invalid results to FileProcessingExceptions.

FulcrumFS.Documents

Optional extension that adds document to PDF conversion capabilities, allowing PDF variants (e.g. for previewing or archiving) to be generated from word processing documents, spreadsheets and presentations.

Document conversion is provided by LibreOffice.

FulcrumFS.Images

Optional extension that adds customizable image processing capabilities, including validation, thumbnail generation, resizing, format conversion and metadata stripping.

Image processing is provided by ImageSharp.

FulcrumFS.Pdf

Optional extension that adds PDF image extraction capabilities, rendering PDF pages to images (e.g. for thumbnail generation).

PDF rendering is provided by PDFium via PDFtoImage.

FulcrumFS.Videos

Optional extension that adds customizable video processing capabilities, including validation, thumbnail generation, resizing, format conversion, metadata stripping, bitrate limiting, and audio stripping, for both original videos and their derived variants.

Video processing is provided by FFmpeg and FFprobe.

Further Reading

Please head over to the project documentation site to view articles, examples and the fully documented API.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on Singulink.FulcrumFS:

Package Downloads
Singulink.FulcrumFS.Images

FulcrumFS extension that adds customizable image processing capabilities, including validation, thumbnail generation, resizing, format conversion and metadata stripping, for both original images and their derived variants.

Singulink.FulcrumFS.Videos

FulcrumFS extension that adds customizable video processing capabilities, including validation, thumbnail generation, resizing, format conversion, metadata stripping, bitrate limiting, and audio stripping, for both original videos and their derived variants.

Singulink.FulcrumFS.Pdf

FulcrumFS extension that adds PDF image extraction capabilities, rendering PDF pages to images (e.g. for generating thumbnails) for both original PDF documents and their derived variants.

Singulink.FulcrumFS.Documents

FulcrumFS extension that adds document to PDF conversion capabilities using LibreOffice, allowing PDF variants (e.g. for previewing or archiving) to be generated from word processing documents, spreadsheets and presentations.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.6 125 8/28/2026
1.0.5 116 8/28/2026
1.0.4 118 8/28/2026
1.0.3 124 8/28/2026
1.0.2 117 8/28/2026
1.0.1 121 8/27/2026
1.0.0 135 8/20/2026
1.0.0-preview9 155 8/20/2026
1.0.0-preview8 127 8/19/2026
1.0.0-preview7 183 7/22/2026
1.0.0-preview6 139 7/11/2026
1.0.0-preview5 138 7/11/2026
1.0.0-preview4 137 7/10/2026
1.0.0-preview3 124 7/10/2026
1.0.0-preview2 132 7/7/2026
1.0.0-preview1 127 6/1/2026
0.23.0 153 5/27/2026
0.22.0 143 5/13/2026
0.21.0 145 5/9/2026
Loading failed