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
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ help:
@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"

# Restore NuGet packages
Expand All @@ -34,6 +35,11 @@ test: build
pack: build
dotnet pack -c Release src/RipSharp

# Install ripsharp as a global dotnet tool from local package output
install: pack
@dotnet tool update --global BugZapperLabs.RipSharp --add-source src/RipSharp/bin/Release \
|| dotnet tool install --global BugZapperLabs.RipSharp --add-source src/RipSharp/bin/Release

# Clean build outputs
clean:
dotnet clean RipSharp.sln