SlimLO.NativeAssets.Linux 0.1.10

dotnet add package SlimLO.NativeAssets.Linux --version 0.1.10
                    
NuGet\Install-Package SlimLO.NativeAssets.Linux -Version 0.1.10
                    
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="SlimLO.NativeAssets.Linux" Version="0.1.10" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SlimLO.NativeAssets.Linux" Version="0.1.10" />
                    
Directory.Packages.props
<PackageReference Include="SlimLO.NativeAssets.Linux" />
                    
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 SlimLO.NativeAssets.Linux --version 0.1.10
                    
#r "nuget: SlimLO.NativeAssets.Linux, 0.1.10"
                    
#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 SlimLO.NativeAssets.Linux@0.1.10
                    
#: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=SlimLO.NativeAssets.Linux&version=0.1.10
                    
Install as a Cake Addin
#tool nuget:?package=SlimLO.NativeAssets.Linux&version=0.1.10
                    
Install as a Cake Tool

SlimLO.NativeAssets.Linux

Native Linux runtime for the SlimLO DOCX-to-PDF converter.

This package contains the pre-built native binaries for Linux x64 and arm64:

  • libmergedlo.so — Minimal, LTO-optimized LibreOffice engine (~98 MB) containing only the Writer engine, UNO framework, and DOCX/PDF conversion path
  • libslimlo.so — SlimLO C API layer
  • slimlo_worker — Process-isolated worker binary for crash-resilient conversion
  • Supporting libraries, UNO registries, and configuration files

Built from vanilla LibreOffice source with 30 idempotent patch scripts — not a fork.

Installation

This package is consumed automatically by the SlimLO managed package. Add both to your project:

<PackageReference Include="SlimLO" Version="0.1.0" />
<PackageReference Include="SlimLO.NativeAssets.Linux" Version="0.1.0"
    Condition="$([MSBuild]::IsOSPlatform('Linux'))" />

System Dependencies

The host Linux system must have these libraries installed:

# Ubuntu 24.04 (Noble)
sudo apt-get install -y --no-install-recommends \
    libfontconfig1 libfreetype6 libexpat1 libcairo2 libpng16-16 \
    libjpeg-turbo8 libxml2 libxslt1.1 libicu74 libnss3 libnspr4

Docker

FROM mcr.microsoft.com/dotnet/runtime:8.0-noble

RUN apt-get update && apt-get install -y --no-install-recommends \
    libfontconfig1 libfreetype6 libexpat1 libcairo2 libpng16-16 \
    libjpeg-turbo8 libxml2 libxslt1.1 libicu74 libnss3 libnspr4 \
    && rm -rf /var/lib/apt/lists/*

COPY --from=build /app/publish /app
WORKDIR /app
ENTRYPOINT ["dotnet", "YourApp.dll"]

Use the -noble (Ubuntu 24.04) base image. Default Debian-based images use different package names.

Architectures

Runtime Identifier Architecture
linux-x64 x86_64 (Intel/AMD)
linux-arm64 AArch64 (AWS Graviton, Ampere, Raspberry Pi 4+)

License

MPL-2.0. See GitHub repository for full details.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

  • .NETStandard 2.0

    • No dependencies.
  • net8.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.1.10 34 3/11/2026
0.1.9 31 3/11/2026
0.1.8 41 3/11/2026
0.1.7 66 3/11/2026
0.1.6 65 3/10/2026
0.1.5 68 3/10/2026
0.1.4 66 3/10/2026
0.1.3 120 2/24/2026