15 lines
197 B
Makefile
15 lines
197 B
Makefile
default:
|
|
@just --list
|
|
|
|
run:
|
|
@dotnet run
|
|
|
|
build:
|
|
@dotnet build pacserver.csproj
|
|
|
|
publish: format
|
|
@dotnet publish --configuration Release pacserver.csproj
|
|
|
|
format:
|
|
@dotnet format
|