blob: 187ddbd76c607b4fb3353d2d7af0098c8a7398d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
.PHONY: build pack test clean
EXPORTS_PATH ?= ../../exports
include $(EXPORTS_PATH)/common.mk
# Export, see EduVpnCommon.props
export EXPORTS_LIB_PATH
build:
dotnet publish EduVpnCommon.csproj --configuration Release
pack:
dotnet pack EduVpnCommon.csproj --configuration Release
test: .try-build-lib
dotnet test
clean:
rm -rf bin/ obj/ EduVpnCommonTests/bin/ EduVpnCommonTests/obj/
|