From ca567a5594d4bf0de7b1b990f676cac24a288149 Mon Sep 17 00:00:00 2001 From: Ben Parsons <9parsonsb@gmail.com> Date: Sat, 2 May 2020 17:03:00 +1000 Subject: [PATCH] Updated README.md NuGet package and easier installation Added `runtimes/{tfm}/native` folder to make it clearer where to put native libraries --- README.md | 36 ++++++++++++++++++----- Raylib-cs/runtimes/linux-x64/native/.keep | 1 + Raylib-cs/runtimes/linux-x86/native/.keep | 1 + Raylib-cs/runtimes/osx-x64/native/.keep | 0 Raylib-cs/runtimes/win-x64/native/.keep | 0 Raylib-cs/runtimes/win-x86/native/.keep | 1 + 6 files changed, 31 insertions(+), 8 deletions(-) create mode 100644 Raylib-cs/runtimes/linux-x64/native/.keep create mode 100644 Raylib-cs/runtimes/linux-x86/native/.keep create mode 100644 Raylib-cs/runtimes/osx-x64/native/.keep create mode 100644 Raylib-cs/runtimes/win-x64/native/.keep create mode 100644 Raylib-cs/runtimes/win-x86/native/.keep diff --git a/README.md b/README.md index f87e977..055d4d7 100644 --- a/README.md +++ b/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) [![GitHub contributors](https://img.shields.io/github/contributors/ChrisDill/Raylib-cs)](https://github.com/ChrisDill/Raylib-cs/graphs/contributors) - [![License](https://img.shields.io/badge/license-zlib%2Flibpng-blue.svg)](LICENSE.md) -[![Chat on Discord](https://img.shields.io/discord/426912293134270465.svg?logo=discord)](https://discord.gg/VkzNHUE) +![.NET Core](https://github.com/ChrisDill/Raylib-cs/workflows/.NET%20Core/badge.svg) [![GitHub stars](https://img.shields.io/github/stars/ChrisDill/Raylib-cs?style=social)](https://github.com/ChrisDill/Raylib-cs/stargazers) -![.NET Core](https://github.com/ChrisDill/Raylib-cs/workflows/.NET%20Core/badge.svg) +[![Chat on Discord](https://img.shields.io/discord/426912293134270465.svg?logo=discord)](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 +``` + +[![NuGet](https://img.shields.io/nuget/dt/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 using Raylib_cs; diff --git a/Raylib-cs/runtimes/linux-x64/native/.keep b/Raylib-cs/runtimes/linux-x64/native/.keep new file mode 100644 index 0000000..8d1c8b6 --- /dev/null +++ b/Raylib-cs/runtimes/linux-x64/native/.keep @@ -0,0 +1 @@ + diff --git a/Raylib-cs/runtimes/linux-x86/native/.keep b/Raylib-cs/runtimes/linux-x86/native/.keep new file mode 100644 index 0000000..8d1c8b6 --- /dev/null +++ b/Raylib-cs/runtimes/linux-x86/native/.keep @@ -0,0 +1 @@ + diff --git a/Raylib-cs/runtimes/osx-x64/native/.keep b/Raylib-cs/runtimes/osx-x64/native/.keep new file mode 100644 index 0000000..e69de29 diff --git a/Raylib-cs/runtimes/win-x64/native/.keep b/Raylib-cs/runtimes/win-x64/native/.keep new file mode 100644 index 0000000..e69de29 diff --git a/Raylib-cs/runtimes/win-x86/native/.keep b/Raylib-cs/runtimes/win-x86/native/.keep new file mode 100644 index 0000000..8d1c8b6 --- /dev/null +++ b/Raylib-cs/runtimes/win-x86/native/.keep @@ -0,0 +1 @@ +