No release yet

This commit is contained in:
2023-04-16 23:47:55 +01:00
parent 3b7e286a5b
commit 58d1f26701
380 changed files with 69597 additions and 20486 deletions

25
Makefile Normal file
View File

@ -0,0 +1,25 @@
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