2019-07-19 16:58:44 +08:00
|
|
|
#!/bin/sh
|
2019-07-22 11:54:20 +08:00
|
|
|
mkdir DLLs
|
2020-03-04 16:11:33 +08:00
|
|
|
rsync -avz ./Storage/bin/Release/netstandard2.0/ ./DLLs/
|
2020-03-04 14:52:07 +08:00
|
|
|
#rsync -avz ./RTM/RTM.PCL/bin/Release/ DLLs
|
|
|
|
#rsync -avz ./LiveQuery/LiveQuery.PCL/bin/Release/ DLLs
|
|
|
|
zip -r LeanCloud-SDK-Standard.zip DLLs
|
2019-07-22 11:54:20 +08:00
|
|
|
rm -r DLLs
|
|
|
|
|
2019-07-19 16:58:44 +08:00
|
|
|
mkdir Plugins
|
2020-03-04 16:11:33 +08:00
|
|
|
rsync -av --exclude='UnityEngine.dll' ./Storage/bin/Release/netstandard2.0/ ./Plugins/
|
2020-03-04 14:52:07 +08:00
|
|
|
#rsync -av --exclude='UnityEngine.dll' ./RTM/RTM.Unity/bin/Release/ Plugins
|
|
|
|
#rsync -av --exclude='UnityEngine.dll' ./LiveQuery/LiveQuery.Unity/bin/Release/ Plugins
|
|
|
|
zip -r LeanCloud-SDK-Unity.zip Plugins
|
2019-07-19 16:58:44 +08:00
|
|
|
rm -r Plugins
|