Skip to main content

Project Setup

Requirements

Install the .NET 8.0 SDK.

Ensure that dotnet is correctly set up by executing the following command:

dotnet --version

Create a New Console Application and Add Jitter and Raylib

First, create a new directory named "BoxDrop" and navigate into it:

mkdir BoxDrop && cd BoxDrop

Next, create a new console application in this directory and add Raylib-cs and Jitter2:

dotnet new console
dotnet add package Raylib-cs --version 6.1.1
dotnet add package Jitter2 --version 2.4.4

You have completed the setup. If you now execute the following command:

dotnet run

Your console should display: "Hello, World!".