summaryrefslogtreecommitdiff
path: root/wrappers/csharp/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'wrappers/csharp/Makefile')
-rw-r--r--wrappers/csharp/Makefile12
1 files changed, 11 insertions, 1 deletions
diff --git a/wrappers/csharp/Makefile b/wrappers/csharp/Makefile
index 293a7a2..1761edc 100644
--- a/wrappers/csharp/Makefile
+++ b/wrappers/csharp/Makefile
@@ -1,4 +1,14 @@
-.PHONY: test
+.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/