returning to legacy arch

This commit is contained in:
Paul Schneider 2018-04-22 06:14:20 +02:00
commit d78d1f8cb0
4 changed files with 0 additions and 13037 deletions

View file

@ -1,23 +0,0 @@
CONFIG=Release
PRJNAME=Yavsc.Server
PKGFILENAME=$(PRJNAME).$(VERSION).nupkg
DESTPATH=.
PACKAGE=$(DESTPATH)/$(PKGFILENAME)
BINARY=bin/$(CONFIG)/net451/$(PRJNAME).dll
NUGETSOURCE=$(HOME)/Nupkgs/
$(PACKAGE): $(BINARY)
nuget pack $(PRJNAME).nuspec -Version $(VERSION) -Properties config=$(CONFIG)
clean:
rm $(PACKAGE)
$(BINARY): project.lock.json
dnu build --configuration $(CONFIG)
project.lock.json: project.json
dnu restore
deploy: $(PACKAGE)
cp $(PACKAGE) $(NUGETSOURCE)