Skip to content

Commit

Permalink
Add Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
christianhelle committed Oct 13, 2024
1 parent 0575dfc commit c0d48bf
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit c0d48bf

Please sign in to comment.