pacserver/justfile

15 lines
197 B
Makefile
Raw Normal View History

2023-06-03 12:08:00 +02:00
default:
@just --list
run:
@dotnet run
build:
@dotnet build pacserver.csproj
2023-06-03 14:55:11 +02:00
publish: format
2023-06-03 12:08:00 +02:00
@dotnet publish --configuration Release pacserver.csproj
2023-06-03 14:55:11 +02:00
format:
@dotnet format