main testing is about make -C test
This commit is contained in:
parent
9cbb1706ad
commit
0ba1eb25f5
3 changed files with 4 additions and 3 deletions
2
Makefile
2
Makefile
|
|
@ -36,7 +36,7 @@ undoLocalYavscNugetDeploy:
|
||||||
|
|
||||||
check: cli
|
check: cli
|
||||||
make -C cli check
|
make -C cli check
|
||||||
make -C test test
|
make -C test
|
||||||
|
|
||||||
deploy-pkgs: Yavsc-deploy-pkg Yavsc.Server-deploy-pkg Yavsc.Abstract-deploy-pkg cli-deploy-pkg
|
deploy-pkgs: Yavsc-deploy-pkg Yavsc.Server-deploy-pkg Yavsc.Abstract-deploy-pkg cli-deploy-pkg
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -145,7 +145,7 @@
|
||||||
"lua": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.Kestrel --server.urls http://*:85",
|
"lua": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.Kestrel --server.urls http://*:85",
|
||||||
"luatest": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.Kestrel --server.urls http://*:5001",
|
"luatest": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.Kestrel --server.urls http://*:5001",
|
||||||
"kestrel": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.Kestrel --server.urls http://*:5000",
|
"kestrel": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.Kestrel --server.urls http://*:5000",
|
||||||
"zicmoove": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.Kestrel --server.urls http://*:87",
|
"linkmuse": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.Kestrel --server.urls http://*:87",
|
||||||
"yavsc": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.Kestrel --server.urls http://*:86",
|
"yavsc": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.Kestrel --server.urls http://*:86",
|
||||||
"yavscpre": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.Kestrel --server.urls http://*:84",
|
"yavscpre": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.Kestrel --server.urls http://*:84",
|
||||||
"ef": "EntityFramework.Commands",
|
"ef": "EntityFramework.Commands",
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,14 @@
|
||||||
CONFIGURATION=Debug
|
CONFIGURATION=Debug
|
||||||
BINTARGET=bin/$(CONFIGURATION)/dnx451/test.dll
|
BINTARGET=bin/$(CONFIGURATION)/dnx451/test.dll
|
||||||
|
|
||||||
|
all: test
|
||||||
|
|
||||||
project.lock.json: project.json
|
project.lock.json: project.json
|
||||||
dnu restore
|
dnu restore
|
||||||
|
|
||||||
$(BINTARGET): project.lock.json
|
$(BINTARGET): project.lock.json
|
||||||
dnu build
|
dnu build
|
||||||
|
|
||||||
all: $(BINTARGET)
|
|
||||||
|
|
||||||
test: $(BINTARGET)
|
test: $(BINTARGET)
|
||||||
dnx test
|
dnx test
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue