From 212a7aefd4cb26f65ebec200923a405433938645 Mon Sep 17 00:00:00 2001 From: Mark Pitman Date: Thu, 25 Jun 2026 23:47:30 -0700 Subject: [PATCH] Migrate Makefile to justfile --- Makefile => justfile | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) rename Makefile => justfile (61%) diff --git a/Makefile b/justfile similarity index 61% rename from Makefile rename to justfile index 2b11bd4..6548dec 100644 --- a/Makefile +++ b/justfile @@ -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: @@ -24,7 +22,7 @@ build: restore dotnet build RipSharp.sln # Run code formatter -format: +format: dotnet format RipSharp.sln # Run tests