From 822463b8c795b274af55e25ab7224030e5843307 Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Mon, 15 Jan 2018 14:10:03 +0100 Subject: [PATCH] builds the nuget package Yavsc.Abstract --- Yavsc.Abstract/Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Yavsc.Abstract/Makefile diff --git a/Yavsc.Abstract/Makefile b/Yavsc.Abstract/Makefile new file mode 100644 index 00000000..c7e4655b --- /dev/null +++ b/Yavsc.Abstract/Makefile @@ -0,0 +1,15 @@ + + +TARGET=bin/Debug/Yavsc.Abstract.1.0.0.nupkg + +publish: $(TARGET) + cp $(TARGET) ~/Nupkgs + + +$(TARGET): + dnu pack + +clean: + rm $(TARGET) + +