1 2 3 4 5 6 7 8 9 10 11 12 13 14
.PHONY: build pack test clean build: dotnet publish EduVpnCommon.csproj --configuration Release pack: dotnet pack EduVpnCommon.csproj --configuration Release test: $(MAKE) -C ../../exports dotnet test clean: rm -rf bin/ obj/ EduVpnCommonTests/bin/ EduVpnCommonTests/obj/