17 lines
310 B
Makefile
17 lines
310 B
Makefile
@_show-dir:
|
|
echo "Current Working Directory:"
|
|
pwd
|
|
echo
|
|
|
|
[working-directory: "server"]
|
|
publish: _show-dir
|
|
dotnet publish --self-contained false -t:PublishAllRids
|
|
|
|
[working-directory: "server"]
|
|
run-server: _show-dir
|
|
dotnet run
|
|
|
|
[working-directory: "server.test"]
|
|
test-server: _show-dir
|
|
dotnet test
|