yavsc/test/Makefile

22 lines
347 B
Makefile

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