summaryrefslogtreecommitdiff
path: root/wrappers/csharp/Makefile
blob: 1761edc2504d8e3aa4517410c7cf89ea92da7d9f (plain)
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/