FluentGpu 0.1.2

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

FluentGpu

A from-scratch, near-zero-allocation, NativeAOT, GPU-rendered UI engine for .NET 10 — a React/Reactor programming model (immutable Element records + Component + hooks + a keyed reconciler) over a signals-first reactive core and a custom Direct3D 12 + DirectWrite + DirectComposition renderer.

<PackageReference Include="FluentGpu" Version="0.1.0" />
using FluentGpu;                 // FluentApp
using FluentGpu.Dsl;             // Element
using FluentGpu.Hooks;           // Component
using FluentGpu.Controls;        // Button
using static FluentGpu.Dsl.Ui;   // VStack, Text…

FluentApp.Run(() => new App());

sealed class App : Component
{
    public override Element Render()
    {
        var (n, setN) = UseState(0);
        return VStack(gap: 12,
            Heading("Hello, FluentGpu"),
            Text($"Clicked {n} times"),
            Button.Accent("Click me", () => setN(n + 1)));
    }
}

FluentApp.Run is the whole SDK in one call: it creates a DPI-aware window, brings up D3D12, applies Mica + the real system accent, wires the font system + frame loop, and renders your root component.

What's in the package

One package, all the assemblies inside it:

  • Engine — signals, hooks, the DSL, the keyed reconciler, layout, the retained scene, the render pipeline.
  • Controls — Button, Slider, ScrollView, NavigationView, virtualization, and the rest of the kit.
  • Windows backend — the D3D12 / Win32 / DirectWrite / WIC implementation behind the engine's PAL/RHI/Text seam, plus FluentApp.Run.
  • Windows OS services — toasts, credential vault, SMTC, file pickers, taskbar, activation, and more.
  • Source generators (opt-in) — compile-safe localization keys and [Validatable] form validators.

Requirements

  • .NET 10 SDK (the package targets net10.0).
  • Windows 10 21H2 or later, x64 or arm64 (Direct3D 12 / WDDM 2.0 + the OS HLSL compiler).
  • For a self-contained native build: dotnet publish -c Release -r win-x64 -p:PublishAot=true.

Licensed under the MIT License.

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

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.2 113 6/13/2026