diff --git a/justfile b/justfile new file mode 100644 index 0000000..098492a --- /dev/null +++ b/justfile @@ -0,0 +1,11 @@ +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