Rayo.Rendering.Vulkan 0.1.8

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

Rayo

Rayo is a declarative, retained-mode UI library for .NET 10.

It is designed for building desktop and cross-platform UI with a code-first model, a retained visual tree, a styling system, and multiple rendering backends.

Highlights

  • Declarative UI composition in C#
  • Retained-mode rendering pipeline
  • Signal-first reactive model
  • Fluent API generated from VisualElement properties
  • Styling system with selectors, triggers, and transitions
  • Multiple rendering backends:
    • Rayo.Rendering.OpenGL
    • Rayo.Rendering.SkiaSharp
    • Rayo.Rendering.Vulkan
  • Hosting packages for desktop and Android

Package ecosystem

The repository currently publishes these NuGet packages together:

  • Rayo
  • Rayo.FluentApiGenerator
  • Rayo.Hosting.Abstractions
  • Rayo.Hosting.Android
  • Rayo.Hosting.Desktop
  • Rayo.Rendering
  • Rayo.Rendering.OpenGL
  • Rayo.Rendering.SkiaSharp
  • Rayo.Rendering.Vulkan

All packages in the release set are versioned together from the same Git tag.

Quick example

using Rayo.Controls;
using Rayo.Layout;

var page =
    new VStack()
        .Spacing(12)
        .Padding(24)
        .Children(
            new Label()
                .Text("Hello from Rayo")
                .FontSize(24),
            new Button()
                .Text("Click Me")
                .Height(40)
        );

Repository structure

Building locally

Restore and build the main library with the repository NuGet configuration:

dotnet restore Rayo/Rayo.csproj --configfile NuGet.Config
dotnet build Rayo/Rayo.csproj --no-restore

The solution file references missing projects in this environment, so direct project builds are the supported path.

Documentation

Samples

The repository includes sample applications such as:

  • Gallery
  • FluentExamples
  • StyleDemo
  • OpenGLView
  • VulkanView
  • CrossPlatformApp

License

Rayo is distributed under the MIT License.

See LICENSE for the full text.

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.8 98 5/8/2026
0.1.7 85 5/6/2026
0.1.6 79 5/6/2026