yavsc/test/Makefile

22 lines
347 B
Makefile

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