Raylib-cs.BleedingEdge.Runtimes 5.6.2-dev.222

This is a prerelease version of Raylib-cs.BleedingEdge.Runtimes.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Raylib-cs.BleedingEdge.Runtimes --version 5.6.2-dev.222
                    
NuGet\Install-Package Raylib-cs.BleedingEdge.Runtimes -Version 5.6.2-dev.222
                    
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="Raylib-cs.BleedingEdge.Runtimes" Version="5.6.2-dev.222" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Raylib-cs.BleedingEdge.Runtimes" Version="5.6.2-dev.222" />
                    
Directory.Packages.props
<PackageReference Include="Raylib-cs.BleedingEdge.Runtimes" />
                    
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 Raylib-cs.BleedingEdge.Runtimes --version 5.6.2-dev.222
                    
#r "nuget: Raylib-cs.BleedingEdge.Runtimes, 5.6.2-dev.222"
                    
#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 Raylib-cs.BleedingEdge.Runtimes@5.6.2-dev.222
                    
#: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=Raylib-cs.BleedingEdge.Runtimes&version=5.6.2-dev.222&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Raylib-cs.BleedingEdge.Runtimes&version=5.6.2-dev.222&prerelease
                    
Install as a Cake Tool

<img align="left" width="160" height="160" src="https://raw.githubusercontent.com/danilwhale/Raylib-cs.BleedingEdge/main/Assets/Logo-256.png" alt="Logo">

Raylib-cs.BleedingEdge

Bleeding-edge C# bindings for raylib, a simple and easy-to-use library to learn videogames programming (www.raylib.com)

Discord NuGet Downloads GitHub License GitHub Repo stars GitHub commit activity GitHub Actions Workflow Status


Raylib-cs.BleedingEdge targets .NET 8+ and binds raylib's master branch

there are WIP examples. you can reference raylib-cs or raylib for missing examples

installation

$ dotnet add package Raylib-cs.BleedingEdge --prerelease
$ dotnet add package Raylib-cs.BleedingEdge.Runtimes --prerelease

if you need...

  • ... just runtimes: install Raylib-cs.BleedingEdge.Runtimes.

  • ... custom native build: uninstall Raylib-cs.BleedingEdge.Runtimes and add CompileNatives.props to your project and import it (add <Import Project="CompileNatives.props"/>). You also need to clone raylib repo and specify path to it in the CustomNatives.props (by default it's ../raylib)

  • ... to compile a static library: add <CompileShared>false</CompileShared> to your project's PropertyGroup. Note that you need custom native build setup for this (read above).

  • ... prebuilt static library: you can get it from GitHub Actions. if you don't have a GitHub account, use nightly.link

"hello, world!"

using Raylib_cs.BleedingEdge;
using static Raylib_cs.BleedingEdge.Raylib;

const int screenWidth = 800;
const int screenHeight = 450;

InitWindow(screenWidth, screenHeight, "raylib [core] example - basic window");

while (!WindowShouldClose())
{
    BeginDrawing();
    ClearBackground(Color.RayWhite);
    
    DrawText("Congrats! You created your first window!", 190, 200, 20, Color.LightGray);
    
    EndDrawing();
}

CloseWindow();
There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

  • net8.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Raylib-cs.BleedingEdge.Runtimes:

Package Downloads
Vigilance

2D Game Engine

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
5.6.2-dev.223 188 11/13/2025
5.6.2-dev.222 150 11/9/2025
5.6.2-dev.220 139 10/28/2025
5.6.2-dev.219 132 10/28/2025
5.6.2-dev.218 129 10/23/2025
5.6.2-dev.217 124 10/22/2025
5.6.2-dev.216 119 10/21/2025
5.6.2-dev.214 133 10/2/2025
5.6.2-dev.213 134 9/24/2025
5.6.2-dev.212 129 9/23/2025
5.6.2-dev.211 260 9/18/2025
5.6.2-dev.210 253 9/18/2025
5.6.2-dev.209 262 9/17/2025
5.6.2-dev.208 107 9/13/2025
5.6.2-dev.207 73 9/12/2025
5.6.2-dev.206 129 9/5/2025
5.6.2-dev.201 132 8/20/2025
5.6.2-dev.200 127 8/18/2025
5.6.2-dev.199 130 8/13/2025
5.6.2-dev.198 130 8/12/2025
5.6.2-dev.197 208 8/5/2025
5.6.2-dev.196 154 8/4/2025
5.6.2-dev.195 32 8/2/2025
5.6.2-dev.194 34 8/1/2025
5.6.2-dev.189 104 7/30/2025
5.6.2-dev.188 236 7/26/2025
5.6.2-dev.186 397 7/21/2025
5.6.2-dev.185 46 7/19/2025
5.6.2-dev.184 127 7/15/2025
5.6.2-dev.183 123 7/15/2025
5.6.2-dev.182 121 7/14/2025
5.6.2-dev.181 132 7/9/2025
5.6.2-dev.180 127 7/2/2025
5.6.2-dev.179 81 6/27/2025
5.6.2-dev.178 137 6/23/2025
5.6.2-dev.177 58 6/21/2025
5.6.2-dev.176 131 6/17/2025
5.6.2-dev.175 133 6/17/2025
5.6.2-dev.174 134 6/2/2025
5.6.2-dev.173 93 5/31/2025
5.6.2-dev.172 134 5/28/2025
5.6.2-dev.171 140 5/19/2025
5.6.2-dev.170 157 5/16/2025
5.6.2-dev.168 169 5/16/2025
5.6.2-dev.167 204 5/12/2025
5.6.2-dev.166 117 5/9/2025
5.6.2-dev.165 138 5/5/2025
5.6.2-dev.162 123 4/27/2025
5.6.2-dev.61 122 4/27/2025
5.6.2-dev.60 108 2/25/2025
5.6.2-dev.59 85 2/23/2025
5.6.2-dev.58 80 2/21/2025
5.6.2-dev.57 83 2/20/2025
5.6.2-dev.56 85 2/14/2025
5.6.2-dev.55 85 2/13/2025
5.6.2-dev.54 85 2/1/2025
5.6.2-dev.53 82 1/31/2025
5.6.2-dev.52 87 1/28/2025
5.6.2-dev.51 76 1/28/2025
5.6.2-dev.50 78 1/28/2025
5.6.2-dev.45 80 1/27/2025
5.6.2-dev.44 79 1/25/2025
5.6.2-dev.43 69 1/24/2025
5.6.2-dev.42 71 1/22/2025
5.6.2-dev.41 71 1/19/2025
5.6.2-dev.40 69 1/16/2025
5.6.2-dev.39 64 1/16/2025
5.6.2-dev.38 71 1/13/2025
5.6.2-dev.37 81 1/10/2025
5.6.2-dev.36 56 1/9/2025
5.6.2-dev.35 65 1/8/2025
5.6.2-dev.34 101 1/3/2025
5.6.2-dev.33 94 12/31/2024
5.6.2-dev.32 80 12/26/2024
5.6.2-dev.31 84 12/24/2024
5.6.2-dev.30 84 12/23/2024
5.6.2-dev.29 86 12/21/2024
5.6.2-dev.28 82 12/21/2024
5.6.2-dev.27 87 12/20/2024
5.6.2-dev.26 81 12/18/2024
5.6.2-dev.25 81 12/18/2024
5.6.2-dev.24 100 12/8/2024
5.6.2-dev.23 76 12/8/2024
5.6.2-dev.22 96 12/5/2024
5.6.2-dev.21 81 12/3/2024
5.6.2-dev.20 78 12/2/2024
5.6.2-dev.19 88 11/29/2024
5.6.2-dev.18 92 11/22/2024
5.5.2-dev.17 81 11/20/2024
5.5.2-dev.16 79 11/20/2024
5.5.1-dev-9 88 11/4/2024
5.5.1-dev-8 80 10/29/2024
5.5.1-dev-7 88 10/28/2024
5.5.1-dev-6 79 10/25/2024
5.5.1-dev-5 75 10/24/2024
5.5.1-dev-4 72 10/24/2024
5.5.1-dev-3 79 10/24/2024
5.5.1-dev-14 71 11/20/2024
5.5.1-dev-13 79 11/20/2024
5.5.1-dev-12 75 11/18/2024
5.5.1-dev-11 73 11/18/2024
5.5.1-dev-10 78 11/18/2024
5.5.1-dev.15 78 11/20/2024
5.5.0-dev-94 84 10/23/2024
5.5.0-dev-92 77 10/23/2024
5.5.0-dev-87 79 10/23/2024
5.5.0-dev-86 66 10/22/2024
5.5.0-dev-85 77 10/22/2024
5.5.0-dev-84 69 10/22/2024
5.5.0-dev-83 114 10/18/2024
5.5.0-dev-82 71 10/17/2024
5.5.0-dev-81 88 10/16/2024
5.5.0-dev-80 81 10/16/2024
5.5.0-dev-79 78 10/16/2024
5.5.0-dev-68 75 10/15/2024
5.5.0-dev-67 94 10/10/2024
5.5.0-dev-66 78 10/9/2024
5.5.0-dev-65 78 10/4/2024
5.5.0-dev-63 75 10/2/2024
5.5.0-dev-62 84 10/1/2024
5.5.0-dev-61 83 9/28/2024
5.5.0-dev-60 83 9/27/2024
5.5.0-dev-59 81 9/23/2024
5.5.0-dev-58 84 9/22/2024
5.5.0-dev-57 81 9/20/2024
5.5.0-dev-55 106 9/16/2024
5.5.0-dev-54 86 9/16/2024
5.5.0-dev-53 85 9/16/2024
5.5.0-dev-52 96 9/15/2024
5.5.0-dev-51 89 9/13/2024
5.5.0-dev-50 80 8/29/2024
5.5.0-dev-49 84 8/27/2024
5.5.0-dev-47 79 8/27/2024
5.5.0-dev-102 72 10/24/2024