mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-03 11:09:40 -04:00
Updated README.md
NuGet package and easier installation Added `runtimes/{tfm}/native` folder to make it clearer where to put native libraries
This commit is contained in:
parent
8f40c04e6a
commit
ca567a5594
36
README.md
36
README.md
@ -5,22 +5,42 @@
|
|||||||
C# bindings for raylib 3.0, a simple and easy-to-use library to learn videogames programming (www.raylib.com)
|
C# bindings for raylib 3.0, a simple and easy-to-use library to learn videogames programming (www.raylib.com)
|
||||||
|
|
||||||
[](https://github.com/ChrisDill/Raylib-cs/graphs/contributors)
|
[](https://github.com/ChrisDill/Raylib-cs/graphs/contributors)
|
||||||
|
|
||||||
[](LICENSE.md)
|
[](LICENSE.md)
|
||||||
[](https://discord.gg/VkzNHUE)
|

|
||||||
[](https://github.com/ChrisDill/Raylib-cs/stargazers)
|
[](https://github.com/ChrisDill/Raylib-cs/stargazers)
|
||||||
|
|
||||||

|
[](https://discord.gg/VkzNHUE)
|
||||||
|
|
||||||
## Installation
|
|
||||||
|
|
||||||
1. Add Raylib-cs to your project. See the Tests projects for reference.
|
|
||||||
|
|
||||||
2. Download the native libraries using the [official 3.0 release](https://github.com/raysan5/raylib/releases/tag/3.0.0).
|
## Installation - NuGet
|
||||||
|
|
||||||
3. Make sure the native library matches the platform you are using and can be found in the search path. See https://www.mono-project.com/docs/advanced/pinvoke/ for details.
|
This is the prefered method to get started - The package is still new so please report any [issues](https://github.com/ChrisDill/Raylib-cs/issues).
|
||||||
|
|
||||||
4. Start coding!
|
```
|
||||||
|
dotnet add package Raylib-cs
|
||||||
|
```
|
||||||
|
|
||||||
|
[](https://www.nuget.org/packages/Raylib-cs/)
|
||||||
|
|
||||||
|
|
||||||
|
Currently supported are netstandard2.0 (which should include Framework 4.7.2+) and netcore3.1
|
||||||
|
|
||||||
|
If you need to edit Raylib-cs source then you will need to add the bindings as a project (see below).
|
||||||
|
|
||||||
|
## Installation - Manual
|
||||||
|
|
||||||
|
1. Download/Clone this repo
|
||||||
|
|
||||||
|
2. Add Raylib-cs/Raylib-cs.csproj to your project as an exisitng project. See the Tests projects for reference.
|
||||||
|
|
||||||
|
3. Download the native libraries for the platforms you want to build for using the [official 3.0 release](https://github.com/raysan5/raylib/releases/tag/3.0.0).
|
||||||
|
**NOTE: the MSVC version is required for Windows platforms**
|
||||||
|
|
||||||
|
4. **(Recommended)** Put the native library for each platform under `Raylib-cs/runtimes/{platform}/native/`
|
||||||
|
**(Optional)** If you want to handle the native libraries yourself, make sure they are either in the same directory as the executable and/or can be found in the search path. See https://www.mono-project.com/docs/advanced/pinvoke/ for details.
|
||||||
|
|
||||||
|
5. Start coding!
|
||||||
|
|
||||||
```csharp
|
```csharp
|
||||||
using Raylib_cs;
|
using Raylib_cs;
|
||||||
|
1
Raylib-cs/runtimes/linux-x64/native/.keep
Normal file
1
Raylib-cs/runtimes/linux-x64/native/.keep
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
1
Raylib-cs/runtimes/linux-x86/native/.keep
Normal file
1
Raylib-cs/runtimes/linux-x86/native/.keep
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
0
Raylib-cs/runtimes/osx-x64/native/.keep
Normal file
0
Raylib-cs/runtimes/osx-x64/native/.keep
Normal file
0
Raylib-cs/runtimes/win-x64/native/.keep
Normal file
0
Raylib-cs/runtimes/win-x64/native/.keep
Normal file
1
Raylib-cs/runtimes/win-x86/native/.keep
Normal file
1
Raylib-cs/runtimes/win-x86/native/.keep
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
Loading…
x
Reference in New Issue
Block a user