Raylib-cs.BleedingEdge.Runtimes
5.5.0-dev-65
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.
See the version list below for details.
dotnet add package Raylib-cs.BleedingEdge.Runtimes --version 5.5.0-dev-65
NuGet\Install-Package Raylib-cs.BleedingEdge.Runtimes -Version 5.5.0-dev-65
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.5.0-dev-65" />
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.5.0-dev-65" />
<PackageReference Include="Raylib-cs.BleedingEdge.Runtimes" />
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.5.0-dev-65
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Raylib-cs.BleedingEdge.Runtimes, 5.5.0-dev-65"
#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.5.0-dev-65
#: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.5.0-dev-65&prerelease
#tool nuget:?package=Raylib-cs.BleedingEdge.Runtimes&version=5.5.0-dev-65&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

Raylib-cs.BleedingEdge
C# bindings for raylib, a simple and easy-to-use library to learn videogames programming (www.raylib.com)
Raylib-cs.BleedingEdge targets .NET 8+ and uses the master branch of raylib repo
To see examples, you can reference the Raylib-cs examples as this binding has mostly same function signatures (see code differences)
Basic Example
using Raylib_cs.BleedingEdge;
using static Raylib_cs.BleedingEdge.Raylib;
const int screenWidth = 800;
const int screenHeight = 540;
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();
Differences from Raylib-cs
Main Differences
| Raylib-cs | Raylib-cs.BleedingEdge |
|---|---|
| .NET 6.0+ | .NET 8.0+ |
| Released 07-2018 | Released 08-2024 |
| raylib 5.0 | raylib 5.5-dev (master) |
Code Differences
| Raylib-cs | Raylib-cs.BleedingEdge |
|---|---|
using Raylib-cs |
using Raylib-cs.BleedingEdge |
T[] for functions with pointers |
Span<T> for functions with pointers |
int argument for the length of array |
-, use Span<T>.Slice if necessary |
Utf8Buffer |
Utf8Handle |
AudioCallback |
AudioMixedCallback |
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. 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.
-
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.225 | 360 | 11/24/2025 |
| 5.6.2-dev.224 | 382 | 11/18/2025 |
| 5.6.2-dev.223 | 263 | 11/13/2025 |
| 5.6.2-dev.222 | 183 | 11/9/2025 |
| 5.6.2-dev.220 | 178 | 10/28/2025 |
| 5.6.2-dev.219 | 180 | 10/28/2025 |
| 5.6.2-dev.218 | 156 | 10/23/2025 |
| 5.6.2-dev.217 | 148 | 10/22/2025 |
| 5.6.2-dev.216 | 139 | 10/21/2025 |
| 5.6.2-dev.214 | 172 | 10/2/2025 |
| 5.6.2-dev.213 | 161 | 9/24/2025 |
| 5.6.2-dev.212 | 163 | 9/23/2025 |
| 5.6.2-dev.211 | 289 | 9/18/2025 |
| 5.6.2-dev.210 | 284 | 9/18/2025 |
| 5.6.2-dev.209 | 303 | 9/17/2025 |
| 5.6.2-dev.208 | 150 | 9/13/2025 |
| 5.6.2-dev.207 | 99 | 9/12/2025 |
| 5.6.2-dev.206 | 164 | 9/5/2025 |
| 5.6.2-dev.201 | 162 | 8/20/2025 |
| 5.5.0-dev-65 | 112 | 10/4/2024 |
Loading failed