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

Update README.md

This commit is contained in:
ChrisDill 2023-04-15 11:32:04 +01:00
parent 2e19fd9889
commit 55eaf9ce5c
2 changed files with 8 additions and 10 deletions

View File

@ -19,18 +19,20 @@ Raylib-cs targets net5.0 and net6.0.
This is the prefered method to get started. This is the prefered method to get started.
``` ```
dotnet add package Raylib-cs --version 4.2.0.2 dotnet add package Raylib-cs --version 4.5.0
``` ```
[![NuGet](https://img.shields.io/nuget/dt/raylib-cs)](https://www.nuget.org/packages/Raylib-cs/) [![NuGet](https://img.shields.io/nuget/dt/raylib-cs)](https://www.nuget.org/packages/Raylib-cs/)
If you need to edit Raylib-cs source then you will need to add the bindings as a project (see below). If you need to edit Raylib-cs source then you will need to add the bindings as a project (see below).
If you are new to using NuGet (or you've forgotten) and are trying to run the above command in the command prompt, remember that you need to be *inside the intended project directory* (not just inside the solution directory) otherwise the command won't work. If you are new to using NuGet (or you've forgotten) and are trying to run the above command in the command prompt,
remember that you need to be *inside the intended project directory* (not just inside the solution directory) otherwise
the command won't work.
## Installation - Manual ## Installation - Manual
1. Download/Clone this repo 1. Download/clone the repo
2. Add [Raylib-cs/Raylib-cs.csproj](Raylib-cs/Raylib-cs.csproj) to your project as an existing project. 2. Add [Raylib-cs/Raylib-cs.csproj](Raylib-cs/Raylib-cs.csproj) to your project as an existing project.
@ -71,19 +73,14 @@ namespace HelloWorld
} }
``` ```
## Documentation
Examples for Raylib-cs can be found at [Raylib-cs-Examples](https://github.com/ChrisDill/Raylib-cs-Examples).
Details about Raylib-cs can be found on the [Raylib-cs wiki](https://github.com/ChrisDill/Raylib-cs/wiki).
## Contributing ## Contributing
If you have any ideas, feel free to open an issue and tell me what you think. If you have any ideas, feel free to open an issue and tell me what you think.
If you'd like to contribute, please fork the repository and make changes as If you'd like to contribute, please fork the repository and make changes as
you'd like. Pull requests are warmly welcome. you'd like. Pull requests are warmly welcome.
If you want to request features or report bugs related to raylib directly (in contrast to this binding), please refer to the [author's project repo](https://github.com/raysan5/raylib). If you want to request features or report bugs related to raylib directly (in contrast to this binding), please refer
to the [author's project repo](https://github.com/raysan5/raylib).
## License ## License

View File

@ -23,6 +23,7 @@
<PackageTags>raylib;bindings;gamedev</PackageTags> <PackageTags>raylib;bindings;gamedev</PackageTags>
<RepositoryType>git</RepositoryType> <RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/ChrisDill/Raylib-cs/</RepositoryUrl> <RepositoryUrl>https://github.com/ChrisDill/Raylib-cs/</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>https://www.raylib.com/</PackageProjectUrl> <PackageProjectUrl>https://www.raylib.com/</PackageProjectUrl>
<GenerateDocumentationFile>true</GenerateDocumentationFile> <GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup> </PropertyGroup>