Skip to content
This repository was archived by the owner on Feb 19, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
CP-7101: Ensure the SDK is using the .NET 2.0 version of CookComputin…
…g.XmlRpcV2_dotnet2.dll.

Signed-off-by: Konstantina Chremmou <[email protected]>
  • Loading branch information
Konstantina Chremmou committed Dec 18, 2013
commit f24c5c838093988aa562d7dcb714ecb389c31ad9
6 changes: 5 additions & 1 deletion mk/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,11 @@ omake-phase:
cd $(REPO) && $(OMAKE) dist

$(MY_OBJ_DIR)/$(XMLRPC_DLL):
cp $(PROJECT_OUTPUTDIR)/dotnet-packages-ref/$(XMLRPC_DLL) $@
ifeq ($(wildcard $(PROJECT_OUTPUTDIR)/dotnet-packages-ref/CookComputing.XmlRpcV2_dotnet2.dll),)
cp $(PROJECT_OUTPUTDIR)/dotnet-packages-ref/CookComputing.XmlRpcV2.dll $@
else
cp $(PROJECT_OUTPUTDIR)/dotnet-packages-ref/CookComputing.XmlRpcV2_dotnet2.dll $@
endif

$(MY_OBJ_DIR)/csharp_xmlrpc.tar.gz: $(REPO)/mk/sign.bat omake-phase $(MY_OBJ_DIR)/$(XMLRPC_DLL)
mkdir -p $(CSHARP_XMLRPC_TMP)
Expand Down