Skip to content

Commit a8433ed

Browse files
author
Konstantina Chremmou
committed
Merge pull request xapi-project#11 from kc284/master
CP-7101: Ensure the SDK is using the .NET 2.0 version of CookComputing.X...
2 parents 04b749b + f24c5c8 commit a8433ed

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

mk/Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,11 @@ omake-phase:
8787
cd $(REPO) && $(OMAKE) dist
8888

8989
$(MY_OBJ_DIR)/$(XMLRPC_DLL):
90-
cp $(PROJECT_OUTPUTDIR)/dotnet-packages-ref/$(XMLRPC_DLL) $@
90+
ifeq ($(wildcard $(PROJECT_OUTPUTDIR)/dotnet-packages-ref/CookComputing.XmlRpcV2_dotnet2.dll),)
91+
cp $(PROJECT_OUTPUTDIR)/dotnet-packages-ref/CookComputing.XmlRpcV2.dll $@
92+
else
93+
cp $(PROJECT_OUTPUTDIR)/dotnet-packages-ref/CookComputing.XmlRpcV2_dotnet2.dll $@
94+
endif
9195

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

0 commit comments

Comments
 (0)