diff --git a/Common/Common.AOT/Common.AOT.csproj b/Common/Common.AOT/Common.AOT.csproj index e352a554..e070a90d 100644 --- a/Common/Common.AOT/Common.AOT.csproj +++ b/Common/Common.AOT/Common.AOT.csproj @@ -2,7 +2,7 @@ netstandard2.0 - 0.10.19 + 1.0.2 Common $(ReleaseVersion) true diff --git a/Common/Common/Common.csproj b/Common/Common/Common.csproj index 05881c38..07f13d3d 100644 --- a/Common/Common/Common.csproj +++ b/Common/Common/Common.csproj @@ -2,7 +2,7 @@ netstandard2.0 - 0.10.19 + 1.0.2 Common $(ReleaseVersion) diff --git a/Common/Common/LCCore.cs b/Common/Common/LCCore.cs index 72ac153d..55136577 100644 --- a/Common/Common/LCCore.cs +++ b/Common/Common/LCCore.cs @@ -10,7 +10,7 @@ public class LCCore { public const string SDKName = "LeanCloud-CSharp-SDK"; // SDK 版本号,用于 User-Agent 统计 - public const string SDKVersion = "0.10.19"; + public const string SDKVersion = "1.0.2"; // 接口版本号,用于接口版本管理 public const string APIVersion = "1.1"; diff --git a/Engine/Engine.csproj b/Engine/Engine.csproj index aabf0c23..85e82f67 100644 --- a/Engine/Engine.csproj +++ b/Engine/Engine.csproj @@ -2,7 +2,7 @@ netcoreapp3.1 - 0.10.19 + 1.0.2 $(ReleaseVersion) LeanCloud.Engine true diff --git a/Libs/Google.Protobuf/LC.Google.Protobuf.csproj b/Libs/Google.Protobuf/LC.Google.Protobuf.csproj index fec43bef..7a406313 100644 --- a/Libs/Google.Protobuf/LC.Google.Protobuf.csproj +++ b/Libs/Google.Protobuf/LC.Google.Protobuf.csproj @@ -20,7 +20,7 @@ https://github.com/protocolbuffers/protobuf.git $(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb - 0.10.19 + 1.0.2 diff --git a/Libs/Newtonsoft.Json.AOT/LC.Newtonsoft.Json.AOT.csproj b/Libs/Newtonsoft.Json.AOT/LC.Newtonsoft.Json.AOT.csproj index b245be42..8bf39ee3 100644 --- a/Libs/Newtonsoft.Json.AOT/LC.Newtonsoft.Json.AOT.csproj +++ b/Libs/Newtonsoft.Json.AOT/LC.Newtonsoft.Json.AOT.csproj @@ -34,7 +34,7 @@ $(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb false - 0.10.19 + 1.0.2 diff --git a/Libs/Newtonsoft.Json/LC.Newtonsoft.Json.csproj b/Libs/Newtonsoft.Json/LC.Newtonsoft.Json.csproj index 29b1958e..757a2467 100644 --- a/Libs/Newtonsoft.Json/LC.Newtonsoft.Json.csproj +++ b/Libs/Newtonsoft.Json/LC.Newtonsoft.Json.csproj @@ -30,7 +30,7 @@ true snupkg Newtonsoft.Json.ruleset - 0.10.19 + 1.0.2 diff --git a/LiveQuery/LiveQuery.AOT/LiveQuery.AOT.csproj b/LiveQuery/LiveQuery.AOT/LiveQuery.AOT.csproj index 9985a680..104b6565 100644 --- a/LiveQuery/LiveQuery.AOT/LiveQuery.AOT.csproj +++ b/LiveQuery/LiveQuery.AOT/LiveQuery.AOT.csproj @@ -2,7 +2,7 @@ netstandard2.0 - 0.10.19 + 1.0.2 LiveQuery $(ReleaseVersion) true diff --git a/LiveQuery/LiveQuery.Test/LiveQuery.Test.csproj b/LiveQuery/LiveQuery.Test/LiveQuery.Test.csproj index 5d10d104..80df100c 100644 --- a/LiveQuery/LiveQuery.Test/LiveQuery.Test.csproj +++ b/LiveQuery/LiveQuery.Test/LiveQuery.Test.csproj @@ -4,7 +4,7 @@ netcoreapp3.1 false - 0.10.19 + 1.0.2 diff --git a/LiveQuery/LiveQuery/LiveQuery.csproj b/LiveQuery/LiveQuery/LiveQuery.csproj index 3bfe8f50..ae9c11c6 100644 --- a/LiveQuery/LiveQuery/LiveQuery.csproj +++ b/LiveQuery/LiveQuery/LiveQuery.csproj @@ -2,7 +2,7 @@ netstandard2.0 - 0.10.19 + 1.0.2 $(ReleaseVersion) true diff --git a/Play/SDK/Play.Unity.csproj b/Play/SDK/Play.Unity.csproj index 56a13ca8..15f00941 100644 --- a/Play/SDK/Play.Unity.csproj +++ b/Play/SDK/Play.Unity.csproj @@ -2,7 +2,7 @@ netstandard2.0 - 0.10.19 + 1.0.2 Play diff --git a/README.md b/README.md index 0e298c27..81fa0de2 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ LeanCloud C# SDK,基于 .Net Standard 2.0 标准开发,包括服务如下: - 即时通讯 - Live Query - 云引擎 +- 多人对战 参考:[Unity Demo](https://github.com/leancloud/CSharp-SDK-Unity-Demo) @@ -25,8 +26,9 @@ LeanCloud C# SDK,基于 .Net Standard 2.0 标准开发,包括服务如下: ```json "dependencies": { - "com.leancloud.storage": "https://github.com/leancloud/csharp-sdk-upm.git#storage-0.10.19", - "com.leancloud.realtime": "https://github.com/leancloud/csharp-sdk-upm.git#realtime-0.10.19" + "com.leancloud.storage": "https://github.com/leancloud/csharp-sdk-upm.git#storage-1.0.2", + "com.leancloud.realtime": "https://github.com/leancloud/csharp-sdk-upm.git#realtime-1.0.2", + "com.leancloud.play": "https://github.com/leancloud/csharp-sdk-upm.git#play-1.0.2" } ``` @@ -71,6 +73,8 @@ using LeanCloud; using LeanCloud.Storage; // 即时通讯 using LeanCloud.Realtime; +// 多人对战 +using Leancloud.Play; ``` ## 初始化 diff --git a/Realtime/Realtime.AOT/Realtime.AOT.csproj b/Realtime/Realtime.AOT/Realtime.AOT.csproj index 0b89890a..fd5e1f60 100644 --- a/Realtime/Realtime.AOT/Realtime.AOT.csproj +++ b/Realtime/Realtime.AOT/Realtime.AOT.csproj @@ -2,7 +2,7 @@ netstandard2.0 - 0.10.19 + 1.0.2 Realtime $(ReleaseVersion) true diff --git a/Realtime/Realtime.Test/Realtime.Test.csproj b/Realtime/Realtime.Test/Realtime.Test.csproj index 00383ae5..bc5859bb 100644 --- a/Realtime/Realtime.Test/Realtime.Test.csproj +++ b/Realtime/Realtime.Test/Realtime.Test.csproj @@ -4,7 +4,7 @@ netcoreapp3.1 false - 0.10.19 + 1.0.2 diff --git a/Realtime/Realtime/Realtime.csproj b/Realtime/Realtime/Realtime.csproj index b0ce9a4c..4f998c5a 100644 --- a/Realtime/Realtime/Realtime.csproj +++ b/Realtime/Realtime/Realtime.csproj @@ -2,7 +2,7 @@ netstandard2.0 - 0.10.19 + 1.0.2 $(ReleaseVersion) LeanCloud.Realtime true diff --git a/Sample/LiveQueryApp/LiveQueryApp.csproj b/Sample/LiveQueryApp/LiveQueryApp.csproj index cd451582..7b2df97f 100644 --- a/Sample/LiveQueryApp/LiveQueryApp.csproj +++ b/Sample/LiveQueryApp/LiveQueryApp.csproj @@ -3,7 +3,7 @@ Exe netcoreapp3.1 - 0.10.19 + 1.0.2 diff --git a/Sample/RealtimeApp/RealtimeApp.csproj b/Sample/RealtimeApp/RealtimeApp.csproj index b169c679..4e9619c1 100644 --- a/Sample/RealtimeApp/RealtimeApp.csproj +++ b/Sample/RealtimeApp/RealtimeApp.csproj @@ -3,7 +3,7 @@ Exe netcoreapp3.1 - 0.10.19 + 1.0.2 diff --git a/Storage/Storage.AOT/Storage.AOT.csproj b/Storage/Storage.AOT/Storage.AOT.csproj index ffa24c30..8fb236f4 100644 --- a/Storage/Storage.AOT/Storage.AOT.csproj +++ b/Storage/Storage.AOT/Storage.AOT.csproj @@ -2,7 +2,7 @@ netstandard2.0 - 0.10.19 + 1.0.2 Storage $(ReleaseVersion) true diff --git a/Storage/Storage.Standard/Storage.Standard.csproj b/Storage/Storage.Standard/Storage.Standard.csproj index 334a9b04..c1b6c1f7 100644 --- a/Storage/Storage.Standard/Storage.Standard.csproj +++ b/Storage/Storage.Standard/Storage.Standard.csproj @@ -2,7 +2,7 @@ netstandard2.0 - 0.10.19 + 1.0.2 Storage.Standard $(ReleaseVersion) true diff --git a/Storage/Storage.Test/Storage.Test.csproj b/Storage/Storage.Test/Storage.Test.csproj index 7f8e77ee..f2054956 100644 --- a/Storage/Storage.Test/Storage.Test.csproj +++ b/Storage/Storage.Test/Storage.Test.csproj @@ -4,7 +4,7 @@ netcoreapp3.1 false - 0.10.19 + 1.0.2 diff --git a/Storage/Storage.Unity/Storage.Unity.csproj b/Storage/Storage.Unity/Storage.Unity.csproj index 8c51b70d..a6961ab6 100644 --- a/Storage/Storage.Unity/Storage.Unity.csproj +++ b/Storage/Storage.Unity/Storage.Unity.csproj @@ -2,7 +2,7 @@ netstandard2.0 - 0.10.19 + 1.0.2 Storage.Unity $(ReleaseVersion) true diff --git a/Storage/Storage/Storage.csproj b/Storage/Storage/Storage.csproj index c1747ea0..48f23502 100644 --- a/Storage/Storage/Storage.csproj +++ b/Storage/Storage/Storage.csproj @@ -2,7 +2,7 @@ netstandard2.0 - 0.10.19 + 1.0.2 $(ReleaseVersion) LeanCloud.Storage true diff --git a/csharp-sdk.sln b/csharp-sdk.sln index 7a9e57fe..9c0871b0 100644 --- a/csharp-sdk.sln +++ b/csharp-sdk.sln @@ -167,6 +167,6 @@ Global {596E6EDA-B230-4AB5-BFB8-66F8C897F35B} = {31D674F3-A62C-4074-9B4E-0EB034F63A30} EndGlobalSection GlobalSection(MonoDevelopProperties) = preSolution - version = 0.10.19 + version = 1.0.2 EndGlobalSection EndGlobal