From 049f4822f2b76295a36d464e3608db56839e895a Mon Sep 17 00:00:00 2001 From: Mizux Seiha Date: Fri, 3 Apr 2020 15:11:15 +0200 Subject: [PATCH] make: add package_dotnet target --- makefiles/Makefile.dotnet.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/makefiles/Makefile.dotnet.mk b/makefiles/Makefile.dotnet.mk index 6205f45b15..6578881462 100644 --- a/makefiles/Makefile.dotnet.mk +++ b/makefiles/Makefile.dotnet.mk @@ -30,16 +30,19 @@ TEMP_DOTNET_DIR=temp_dotnet # Main target .PHONY: dotnet # Build all .NET OrTools packages .PHONY: test_dotnet # Run all test_dotnet_* targets +.PHONY: package_dotnet # Build all .NET OrTools packages ifndef HAS_DOTNET dotnet: @echo DOTNET_BIN = $(DOTNET_BIN) $(warning Cannot find '$@' command which is needed for build. Please make sure it is installed and in system path.) check_dotnet: dotnet test_dotnet: dotnet +package_dotnet: dotnet else dotnet: dotnet_csharp dotnet_fsharp check_dotnet: check_dotnet_pimpl test_dotnet: test_dotnet_pimpl +package_dotnet: dotnet BUILT_LANGUAGES +=, dotnet \(netstandard2.0\) endif