isn/Makefile

28 lines
387 B
Makefile

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