initial import

This commit is contained in:
Paul Schneider 2018-04-12 13:31:46 +02:00
commit 26a41c2381

24
Yavsc.Server/Makefile Normal file
View file

@ -0,0 +1,24 @@
CONFIG=Release
VERSION=1.0.5-rc8
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)