diff options
| author | StevenWdV <stevenwdv@gmail.com> | 2021-11-24 17:47:17 +0100 |
|---|---|---|
| committer | StevenWdV <stevenwdv@gmail.com> | 2021-11-24 17:47:17 +0100 |
| commit | bc940a145ca8150bc1e8fbb18d0a4685e9b09ce0 (patch) | |
| tree | 20c661ab9fa8f79943e2e019f274abe7c6ad902a /wrappers/csharp/Makefile | |
| parent | 8878d8705f0b0fcddb3979194340ca39df897580 (diff) | |
Support more platforms, add make clean targets, support embedding lib in nupkg
Diffstat (limited to 'wrappers/csharp/Makefile')
| -rw-r--r-- | wrappers/csharp/Makefile | 12 |
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/ |
