isn/Makefile

26 lines
373 B
Makefile

CONFIGURATION=Debug
TARGETFV=net7.0
VERSION=1.0.24
all: build-isn build-isnd
build-%: src/%
dotnet build -p:Configuration=$(CONFIGURATION) $^
pack-%: src/%
dotnet pack $^
watch:
dotnet watch --project=src/isnd
push-%: src/%
isn push $^/bin/$(CONFIGURATION)/$^.$(VERSION).nupkg
clean-%: src/%
rm -rf $^/bin $^/obj
clean: clean-isnd clean-isn clean-isn.abst