From c0d48bf2c5f8d447ac2c2ab542beabcdeaa7f0d9 Mon Sep 17 00:00:00 2001 From: Christian Helle Date: Sun, 13 Oct 2024 22:21:47 +0200 Subject: [PATCH] Add Makefile --- Makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..79e003c --- /dev/null +++ b/Makefile @@ -0,0 +1,19 @@ +# Default target +all: build + +# Build target +build: + dotnet build --configuration Debug HttpGenerator.sln + +# Optional release build target +release: + dotnet build --configuration Release HttpGenerator.sln + +# Test target +test: + dotnet test --configuration Debug HttpGenerator.sln + +# Clean target +clean: + dotnet clean HttpGenerator.sln +