2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-05 11:19:39 -04:00

Update workflow and README.md ready to merge into master

- Should be able to run workflow manually and pushes will only run it if they are on master.
- Update README.md with new version + note about the nuget package being out of date.
This commit is contained in:
ChrisDill 2020-12-27 17:10:30 +00:00
parent 1e362c5e64
commit b87362fd28
2 changed files with 9 additions and 5 deletions

View File

@ -1,8 +1,10 @@
name: .NET Core name: .NET Core
on: on:
push: push:
branches: master
pull_request: pull_request:
branches: master branches: master
workflow_dispatch:
jobs: jobs:
build: build:

View File

@ -2,7 +2,7 @@
# Raylib-cs # Raylib-cs
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.5.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) [![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) [![License](https://img.shields.io/badge/license-zlib%2Flibpng-blue.svg)](LICENSE.md)
@ -17,6 +17,8 @@ Raylib-cs targets netstandard2.1 and supports netcoreapp3.0+ and net5.0.
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). 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).
**NOTE** The nuget package uses raylib 3.0. It will soon be updated to raylib 3.5.0.
``` ```
dotnet add package Raylib-cs --version 3.1.5 dotnet add package Raylib-cs --version 3.1.5
``` ```
@ -31,7 +33,7 @@ If you need to edit Raylib-cs source then you will need to add the bindings as a
2. Add Raylib-cs/Raylib-cs.csproj to your project as an existing project. 2. Add Raylib-cs/Raylib-cs.csproj to your project as an existing project.
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). 3. Download the native libraries for the platforms you want to build for using the [official 3.5.0 release](https://github.com/raysan5/raylib/releases/tag/3.5.0).
**NOTE: the MSVC version is required for Windows platforms** **NOTE: the MSVC version is required for Windows platforms**
4. **(Recommended)** Put the native library for each platform under `Raylib-cs/runtimes/{platform}/native/` 4. **(Recommended)** Put the native library for each platform under `Raylib-cs/runtimes/{platform}/native/`