From 35f35bb4d5ea6cc839ef303409cbb6b472cc6290 Mon Sep 17 00:00:00 2001 From: German Hoyos Date: Sun, 7 Jan 2024 04:43:58 -0700 Subject: [PATCH] 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. --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 4cc4b8a..5d93ab7 100644 --- a/README.md +++ b/README.md @@ -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. +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 ```