refact & version file name
This commit is contained in:
@ -28,13 +28,6 @@ git_status := $(shell git status -s --porcelain |wc -l)
|
|||||||
|
|
||||||
all: $(BINTARGETPATH)
|
all: $(BINTARGETPATH)
|
||||||
|
|
||||||
rc-num.txt-check:
|
|
||||||
ifndef rc_num
|
|
||||||
@echo no rc num ... please, could you try and run 'make rc-num.txt' ?.
|
|
||||||
else
|
|
||||||
@echo 'Got rc num : $(rc_num)'
|
|
||||||
endif
|
|
||||||
|
|
||||||
|
|
||||||
restore:
|
restore:
|
||||||
touch project.json
|
touch project.json
|
||||||
@ -67,7 +60,7 @@ bin/output/wwwroot/version: bin/output
|
|||||||
|
|
||||||
pack: $(NUGETSOURCE)/$(PKGFILENAME)
|
pack: $(NUGETSOURCE)/$(PKGFILENAME)
|
||||||
|
|
||||||
$(NUGETSOURCE)/$(PKGFILENAME): $(BINTARGETPATH) $(SOLUTIONDIR)/rc-num.txt
|
$(NUGETSOURCE)/$(PKGFILENAME): $(BINTARGETPATH) $(SOLUTIONDIR)/version.txt
|
||||||
ifeq ($(git_status),0)
|
ifeq ($(git_status),0)
|
||||||
nuget pack $(PRJNAME).nuspec -Version $(VERSION) -Properties config=$(CONFIGURATION) -OutputDirectory bin
|
nuget pack $(PRJNAME).nuspec -Version $(VERSION) -Properties config=$(CONFIGURATION) -OutputDirectory bin
|
||||||
else
|
else
|
||||||
|
@ -8,3 +8,12 @@ MAKE=make
|
|||||||
NUGETSOURCE=$(HOME)/Nupkgs
|
NUGETSOURCE=$(HOME)/Nupkgs
|
||||||
VERSION=$(version)
|
VERSION=$(version)
|
||||||
CONFIGURATION=Debug
|
CONFIGURATION=Debug
|
||||||
|
|
||||||
|
version-check:
|
||||||
|
ifndef version
|
||||||
|
@echo no version number specification ... please, could you try and run 'echo 1.2.3 > $(SOLUTIONDIR)version.txt' ?.
|
||||||
|
else
|
||||||
|
@echo 'Got version number : $(version)'
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user