From 4fbb06e0f65966249e6926f0e505eb5df74d7e87 Mon Sep 17 00:00:00 2001 From: WraithGlade <8360085+WraithGlade@users.noreply.github.com> Date: Sat, 8 Apr 2023 21:29:04 -0400 Subject: [PATCH] Added some help info for NuGet use. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I accidentally made the mistake of trying to use NuGet in the solution folder and it took a few minutes to figure out what I was doing wrong. So, I added this sentence here to help clarify what to do for this (probably common) problem since Visual Studio is fairly likely to start the working directory for the command prompt in the solution directory, which may not be the same as the project directory. I think since raylib attracts many new users it is best to make the install info as easy as possible, thus my justification for adding this here. Installs should be as frictionless as possible. I hope you'll consider adding my suggestion here. 🙂 --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index dcd87e1..9d0e751 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,8 @@ dotnet add package Raylib-cs --version 4.2.0.2 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. + ## Installation - Manual 1. Download/Clone this repo