From 9bcebffeb32bf73d4a03962dd9451332c0182a41 Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Wed, 2 May 2018 04:13:20 +0200 Subject: [PATCH] a way todo --- cli/Makefile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 cli/Makefile diff --git a/cli/Makefile b/cli/Makefile new file mode 100644 index 00000000..10c3ddf7 --- /dev/null +++ b/cli/Makefile @@ -0,0 +1,22 @@ + + +all: build + +build: project.lock.json + dnu build + +deploy-pkg: + + +restore: + touch project.json + dnu restore + +project.lock.json: project.json + dnu restore + +run: project.lock.json + ASPNET_ENV=Development ASPNET_LOG_LEVEL=Debug dnx run + + +