yavsc/test/Makefile

17 lines
214 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
dnu build
test: $(BINTARGET)
dnx test
.PHONY: test