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) + +