2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-06-30 19:03:42 -04:00

Update README.md (#218)

Added an additional step for more clarity, this just explains that a .NET app should be created before running the add package command for Raylib-cs.
This commit is contained in:
German Hoyos
2024-01-07 04:43:58 -07:00
committed by GitHub
parent 269b6fe67f
commit 35f35bb4d5

View File

@ -18,6 +18,13 @@ Raylib-cs targets net5.0 and net6.0 and uses the [official 4.5.0 release](https:
This is the prefered method to get started. This is the prefered method to get started.
1) Pick a folder in which you would like to start a raylib project for example "MyRaylibCSProj"
2) Then from a terminal (for example a VSCode terminal), whilst in the folder dir you just created
run the following commands. (Please keep in mind you should have .NET already installed on your system)
```
dotnet new console
```
``` ```
dotnet add package Raylib-cs dotnet add package Raylib-cs
``` ```