Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 9 additions & 11 deletions Makefile → justfile
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
.PHONY: all build test format clean restore pack help

# Default target: build and test the solution
all: build test

# Show available targets
help:
@echo "Available targets:"
@echo " make all - Build and test the solution (default)"
@echo " make restore - Restore NuGet packages"
@echo " make build - Build the solution"
@echo " make format - Run dotnet format"
@echo " make test - Run tests"
@echo " make pack - Build NuGet package (Release)"
@echo " make install - Install ripsharp as a global dotnet tool (local package)"
@echo " make clean - Clean build outputs"
@echo " just all - Build and test the solution (default)"
@echo " just restore - Restore NuGet packages"
@echo " just build - Build the solution"
@echo " just format - Run dotnet format"
@echo " just test - Run tests"
@echo " just pack - Build NuGet package (Release)"
@echo " just install - Install ripsharp as a global dotnet tool (local package)"
@echo " just clean - Clean build outputs"

# Restore NuGet packages
restore:
Expand All @@ -24,7 +22,7 @@ build: restore
dotnet build RipSharp.sln

# Run code formatter
format:
format:
dotnet format RipSharp.sln

# Run tests
Expand Down
Loading