creating the abstract packet

This commit is contained in:
Paul Schneider 2018-01-17 17:16:03 +01:00
commit deb1068e3b
4 changed files with 13 additions and 12 deletions

View file

@ -1,15 +1,17 @@
CONFIG=Release
VERSION=1.0.2
PRJNAME=Yavsc.Abstract
PKGFILENAME=$(PRJNAME).$(VERSION).nupkg
DESTPATH=.
PACKAGE=$(DESTPATH)/$(PKGFILENAME)
$(PACKAGE):
nuget pack $(PRJNAME).nuspec -Version $(VERSION)
TARGET=bin/Debug/Yavsc.Abstract.1.0.0.nupkg
publish: $(TARGET)
cp $(TARGET) ~/Nupkgs
$(TARGET):
dnu pack
publish: $(PACKAGE)
cp $(PACKAGE) ~/Nupkgs
clean:
rm $(TARGET)
rm $(PACKAGE)