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 +