Files
yavsc/test/Makefile
2018-07-21 16:08:28 +02:00

22 lines
347 B
Makefile

CONFIGURATION=Debug
BINTARGET=bin/$(CONFIGURATION)/dnx451/test.dll
all: test
project.lock.json: project.json
dnu restore
$(BINTARGET): project.lock.json
dnu build --configuration $(CONFIGURATION)
breaking:
dnx test -class test.YavscWorkInProgress.GitClone
test: $(BINTARGET)
ASPNET_ENV=Development dnx test -maxthreads 1
.PHONY: test