This commit is contained in:
2018-06-24 00:21:15 +02:00
parent e56547d25f
commit b93db116e1
7 changed files with 2506 additions and 43 deletions

16
test/Makefile Normal file
View File

@ -0,0 +1,16 @@
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