diff --git a/Yavsc.Abstract/Makefile b/Yavsc.Abstract/Makefile index c7e4655b..6a29f6b9 100644 --- a/Yavsc.Abstract/Makefile +++ b/Yavsc.Abstract/Makefile @@ -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) diff --git a/Yavsc.Abstract/Yavsc.Abstract.1.0.2.nupkg b/Yavsc.Abstract/Yavsc.Abstract.1.0.2.nupkg new file mode 100644 index 00000000..3e234d26 Binary files /dev/null and b/Yavsc.Abstract/Yavsc.Abstract.1.0.2.nupkg differ diff --git a/Yavsc.Abstract/Yavsc.Abstract.nuspec b/Yavsc.Abstract/Yavsc.Abstract.nuspec index efac8e57..dbe88946 100644 --- a/Yavsc.Abstract/Yavsc.Abstract.nuspec +++ b/Yavsc.Abstract/Yavsc.Abstract.nuspec @@ -18,7 +18,6 @@ yavsc - diff --git a/Yavsc.Abstract/project.json b/Yavsc.Abstract/project.json index 82f4d158..5020dc7f 100644 --- a/Yavsc.Abstract/project.json +++ b/Yavsc.Abstract/project.json @@ -1,5 +1,5 @@ { - "version": "1.0.0-*", + "version": "1.0.2", "description": "Yavsc Client Api", "authors": [ "Paul Schneider" @@ -23,4 +23,4 @@ } } } -} \ No newline at end of file +}