azure-table-archiver/Makefile

11 строки
128 B
Makefile
Executable File

test:
dotnet test -v n
check:
dotnet test --no-build -v n
build:
dotnet build
clean:
rm -rf **/bin **/obj
all: build check