12 lines
212 B
Makefile
12 lines
212 B
Makefile
default:
|
|
@just --list
|
|
|
|
run:
|
|
@dotnet run
|
|
|
|
build:
|
|
@dotnet build teams-recording-downloader.csproj
|
|
|
|
publish:
|
|
@dotnet publish --configuration Release --arch x64 --use-current-runtime --self-contained
|