diff --git a/GQ_TongXin/Assets/NuGet.config.meta b/GQ_TongXin/Assets/NuGet.config.meta
index 0d2a761d5..d4f79672d 100644
--- a/GQ_TongXin/Assets/NuGet.config.meta
+++ b/GQ_TongXin/Assets/NuGet.config.meta
@@ -13,6 +13,17 @@ PluginImporter:
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
+ - first:
+ : Any
+ second:
+ enabled: 0
+ settings:
+ Exclude Editor: 1
+ Exclude Linux64: 1
+ Exclude OSXUniversal: 1
+ Exclude WebGL: 1
+ Exclude Win: 1
+ Exclude Win64: 1
- first:
Any:
second:
@@ -23,7 +34,33 @@ PluginImporter:
second:
enabled: 0
settings:
+ CPU: AnyCPU
DefaultValueInitialized: true
+ OS: AnyOS
+ - first:
+ Standalone: Linux64
+ second:
+ enabled: 0
+ settings:
+ CPU: AnyCPU
+ - first:
+ Standalone: OSXUniversal
+ second:
+ enabled: 0
+ settings:
+ CPU: None
+ - first:
+ Standalone: Win
+ second:
+ enabled: 0
+ settings:
+ CPU: x86
+ - first:
+ Standalone: Win64
+ second:
+ enabled: 0
+ settings:
+ CPU: x86_64
- first:
Windows Store Apps: WindowsStoreApps
second:
diff --git a/GQ_TongXin/Assets/Packages/SimpleJson.0.38.0.meta b/GQ_TongXin/Assets/Packages/SimpleJson.0.38.0.meta
new file mode 100644
index 000000000..50d41d906
--- /dev/null
+++ b/GQ_TongXin/Assets/Packages/SimpleJson.0.38.0.meta
@@ -0,0 +1,8 @@
+fileFormatVersion: 2
+guid: f2f45a901a877f34d8af1dc431be9abf
+folderAsset: yes
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/GQ_TongXin/Assets/Packages/SimpleJson.0.38.0/.signature.p7s b/GQ_TongXin/Assets/Packages/SimpleJson.0.38.0/.signature.p7s
new file mode 100644
index 000000000..cc2d4f3ef
Binary files /dev/null and b/GQ_TongXin/Assets/Packages/SimpleJson.0.38.0/.signature.p7s differ
diff --git a/GQ_TongXin/Assets/Packages/SimpleJson.0.38.0/SimpleJson.0.38.0.nupkg b/GQ_TongXin/Assets/Packages/SimpleJson.0.38.0/SimpleJson.0.38.0.nupkg
new file mode 100644
index 000000000..fab60309a
Binary files /dev/null and b/GQ_TongXin/Assets/Packages/SimpleJson.0.38.0/SimpleJson.0.38.0.nupkg differ
diff --git a/GQ_TongXin/Assets/Packages/SimpleJson.0.38.0/SimpleJson.0.38.0.nupkg.meta b/GQ_TongXin/Assets/Packages/SimpleJson.0.38.0/SimpleJson.0.38.0.nupkg.meta
new file mode 100644
index 000000000..14953ef53
--- /dev/null
+++ b/GQ_TongXin/Assets/Packages/SimpleJson.0.38.0/SimpleJson.0.38.0.nupkg.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 778587e0d32548844ba4b2b8d6aae431
+DefaultImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/GQ_TongXin/Assets/Packages/SimpleJson.0.38.0/SimpleJson.psm1 b/GQ_TongXin/Assets/Packages/SimpleJson.0.38.0/SimpleJson.psm1
new file mode 100644
index 000000000..954f84c5a
--- /dev/null
+++ b/GQ_TongXin/Assets/Packages/SimpleJson.0.38.0/SimpleJson.psm1
@@ -0,0 +1,2202 @@
+# SimpleJson https://github.com/facebook-csharp-sdk/simple-json
+# License: MIT License
+# Version: 0.38.0
+
+function ConvertFrom-Json
+{
+ param(
+ [Switch] $AsPSObject,
+ [Parameter(Mandatory=$true,ValueFromPipeline=$true)][String]$json
+ )
+
+ $obj= [SimpleJson.SimpleJson]::DeserializeObject($json)
+
+ if($AsPSObject)
+ {
+ $obj = ConvertJsonObjectToPsObject($obj)
+ }
+
+ return $obj
+}
+
+function ConvertTo-Json
+{
+ param(
+ [object][Parameter(Mandatory=$true,ValueFromPipeline=$true)] $obj
+ )
+
+ return [SimpleJson.SimpleJson]::SerializeObject($obj)
+}
+
+function ConvertJsonObjectToPsObject
+{
+ param(
+ [Object] $obj
+ )
+
+ if($obj -eq $null)
+ {
+ return $null
+ }
+ if($obj -is [System.Collections.Generic.IDictionary[string,object]])
+ {
+ $hash = @{}
+ foreach($kvp in $obj)
+ {
+ $hash[$kvp.Key] = ConvertJsonObjectToPsObject($kvp.Value)
+ }
+
+ return $hash
+ }
+ if($obj -is [system.collections.generic.list[object]])
+ {
+ $arr = New-Object object[] $obj.Count
+
+ for ( $i = 0; $i -lt $obj.count; $i++ )
+ {
+ $arr[$i] = ConvertJsonObjectToPsObject($obj[$i])
+ }
+
+ return $arr
+ }
+
+ return $obj
+}
+
+$source = @"
+
+#define SIMPLE_JSON_DATACONTRACT
+#define SIMPLE_JSON_REFLECTIONEMIT
+
+//-----------------------------------------------------------------------
+//
+// Copyright (c) 2011, The Outercurve Foundation.
+//
+// Licensed under the MIT License (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.opensource.org/licenses/mit-license.php
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+// Nathan Totten (ntotten.com), Jim Zimmerman (jimzimmerman.com) and Prabir Shrestha (prabir.me)
+// https://github.com/facebook-csharp-sdk/simple-json
+//-----------------------------------------------------------------------
+
+// VERSION: 0.38.0
+
+// NOTE: uncomment the following line to make SimpleJson class internal.
+//#define SIMPLE_JSON_INTERNAL
+
+// NOTE: uncomment the following line to make JsonArray and JsonObject class internal.
+//#define SIMPLE_JSON_OBJARRAYINTERNAL
+
+// NOTE: uncomment the following line to enable dynamic support.
+//#define SIMPLE_JSON_DYNAMIC
+
+// NOTE: uncomment the following line to enable DataContract support.
+//#define SIMPLE_JSON_DATACONTRACT
+
+// NOTE: uncomment the following line to enable IReadOnlyCollection and IReadOnlyList support.
+//#define SIMPLE_JSON_READONLY_COLLECTIONS
+
+// NOTE: uncomment the following line to disable linq expressions/compiled lambda (better performance) instead of method.invoke().
+// define if you are using .net framework <= 3.0 or < WP7.5
+//#define SIMPLE_JSON_NO_LINQ_EXPRESSION
+
+// NOTE: uncomment the following line if you are compiling under Window Metro style application/library.
+// usually already defined in properties
+//#define NETFX_CORE;
+
+// If you are targetting WinStore, WP8 and NET4.5+ PCL make sure to #define SIMPLE_JSON_TYPEINFO;
+
+// original json parsing code from http://techblog.procurios.nl/k/618/news/view/14605/14863/How-do-I-write-my-own-parser-for-JSON.html
+
+#if NETFX_CORE
+#define SIMPLE_JSON_TYPEINFO
+#endif
+
+using System;
+using System.CodeDom.Compiler;
+using System.Collections;
+using System.Collections.Generic;
+#if !SIMPLE_JSON_NO_LINQ_EXPRESSION
+using System.Linq.Expressions;
+#endif
+using System.ComponentModel;
+using System.Diagnostics.CodeAnalysis;
+#if SIMPLE_JSON_DYNAMIC
+using System.Dynamic;
+#endif
+using System.Globalization;
+using System.Reflection;
+using System.Runtime.Serialization;
+using System.Text;
+using SimpleJson.Reflection;
+
+// ReSharper disable LoopCanBeConvertedToQuery
+// ReSharper disable RedundantExplicitArrayCreation
+// ReSharper disable SuggestUseVarKeywordEvident
+namespace SimpleJson
+{
+ ///
+ /// Represents the json array.
+ ///
+ [GeneratedCode("simple-json", "1.0.0")]
+ [EditorBrowsable(EditorBrowsableState.Never)]
+ [SuppressMessage("Microsoft.Naming", "CA1710:IdentifiersShouldHaveCorrectSuffix")]
+#if SIMPLE_JSON_OBJARRAYINTERNAL
+ internal
+#else
+ public
+#endif
+ class JsonArray : List