From 06be7bed0c640c21503f75ce834a6fde2fc905ba Mon Sep 17 00:00:00 2001 From: TheArcaneBrony Date: Tue, 10 Oct 2023 21:24:28 +0200 Subject: Initial commit --- README.MD | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 README.MD (limited to 'README.MD') diff --git a/README.MD b/README.MD new file mode 100644 index 0000000..4c0a94b --- /dev/null +++ b/README.MD @@ -0,0 +1,25 @@ +# Project Name + +# Installation + +# Contributing + +```sh +# Prepare patch set +mkdir patches +git format-patch --output-directory "./patches" @{u}.. + +# Send patches +``` + +### Developer utility commands + +Error reporting upon file save: +```sh +inotifywait -rmqe CLOSE_WRITE --include '.*\.cs$' . | while read l; do clear; dotnet build --property WarningLevel=0; done +``` + +Hot rebuild on file save: +```sh +dotnet watch run --no-hot-reload --property WarningLevel=0 +``` -- cgit 1.4.1