yavsc/test/Makefile

18 lines
284 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
test: $(BINTARGET)
ASPNET_ENV=Development dnx test -maxthreads 1
8 years ago
.PHONY: test