yavsc/test/Makefile

17 lines
284 B
Makefile
Raw Normal View History

2018-06-24 00:21:15 +02:00
CONFIGURATION=Debug
BINTARGET=bin/$(CONFIGURATION)/dnx451/test.dll
2018-06-25 15:26:01 +02:00
all: test
2018-06-24 00:21:15 +02:00
project.lock.json: project.json
dnu restore
$(BINTARGET): project.lock.json
2018-07-21 10:06:08 +02:00
dnu build --configuration $(CONFIGURATION)
2018-06-24 00:21:15 +02:00
test: $(BINTARGET)
2018-07-21 10:06:08 +02:00
ASPNET_ENV=Development dnx test -maxthreads 1
2018-06-24 00:21:15 +02:00
.PHONY: test