yavsc/test/Makefile

16 lines
221 B
Makefile
Raw Normal View History

2018-06-24 00:21:15 +02:00
CONFIGURATION=Debug
BINTARGET=bin/$(CONFIGURATION)/dnx451/test.dll
project.lock.json: project.json
dnu restore
$(BINTARGET): project.lock.json
dnu build
all: $(BINTARGET)
test: $(BINTARGET)
dnx test
.PHONY: test