UltralightNet.Bundle 2.2.4

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

header.png

UltralightNet.Bundle

GitHub Packages License: MPL-2.0 .NET 10 Platform

A single-package .NET binding for the Ultralight HTML rendering engine.

This package bundles everything needed to embed Ultralight in a .NET application:

  • UltralightNet - managed bindings for the Ultralight C API
  • UltralightNet.AppCore - managed bindings for AppCore (windowing, font loader, file system, default logger)
  • Native binaries for win-x64, linux-x64, osx-x64, and osx-arm64 (Ultralight, UltralightCore, WebCore, AppCore)

It targets .NET 10.

Install

dotnet add package UltralightNet.Bundle

Quick start

using UltralightNet;
using UltralightNet.AppCore;

AppCoreMethods.SetPlatformFontLoader();
AppCoreMethods.ulEnablePlatformFileSystem("./assets");
AppCoreMethods.ulEnableDefaultLogger("./ultralight.log");

using var renderer = ULPlatform.CreateRenderer(new ULConfig());
using var view = renderer.CreateView(1280, 720, new ULViewConfig());

view.URL = "https://example.com";

while (!view.IsLoading)
{
    renderer.Update();
    renderer.Render();
}

The native binaries are deployed automatically into runtimes/<rid>/native/ when your project builds.

Supported runtimes

RID Libraries
win-x64 Ultralight.dll, UltralightCore.dll, WebCore.dll, AppCore.dll
linux-x64 libUltralight.so, libUltralightCore.so, libWebCore.so, libAppCore.so
osx-x64 libUltralight.dylib, libUltralightCore.dylib, libWebCore.dylib, libAppCore.dylib
osx-arm64 libUltralight.dylib, libUltralightCore.dylib, libWebCore.dylib, libAppCore.dylib

Build & pack locally

dotnet pack -c Release

Output: bin/Release/UltralightNet.Bundle.<version>.nupkg (and .snupkg).

License

Source code in this repository is licensed under MPL-2.0.

The bundled Ultralight native binaries are redistributed under the Ultralight Free License - review their terms before shipping a commercial product.

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.
  • net10.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
2.2.4 141 5/3/2026
2.2.1 94 5/3/2026
2.2.0 96 5/2/2026
2.1.0 109 4/29/2026