From 801ae22c3a8621fdcfdabfed2b4e4b291d8ccd2e Mon Sep 17 00:00:00 2001 From: AGawas Date: Thu, 25 Dec 2025 05:00:25 -0600 Subject: [PATCH] docs: add instructions for building and running with dotnet docs: add instructions for building and running with dotnet --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 907f315..7fe19bf 100644 --- a/README.md +++ b/README.md @@ -45,3 +45,17 @@ If arguments are not provided, the script will search for them in the top level In both cases, the banner and icon must be called 'banner' and 'icon' respectively. The scripts copy these files to your project directory, so running them without args after the first time will always find the banner and icon. The scripts will create a ZIP file in the project directory with the same name as the containing folder. + +### Building and Running with `dotnet` + +For testing or development, you can also build and run the project without the scripts. + +#### Build the project + ```sh + dotnet build + ``` + +#### Run the game +```sh +dotnet run +```