├── .editorconfig ├── .gitattributes ├── .gitignore ├── Json.Net.Unity3D.sln ├── LICENSE ├── NOTE.md ├── README.md ├── appveyor.yml ├── docs ├── UnitTest.md ├── UnitTestResult.png ├── UnitTestSummary.png └── UwpWorkaround.md ├── src ├── Newtonsoft.Json.Tests │ ├── Bson │ │ ├── BsonReaderTests.cs │ │ └── BsonWriterTests.cs │ ├── Converters │ │ ├── BinaryConverterTests.cs │ │ ├── CustomCreationConverterTests.cs │ │ ├── DataSetConverterTests.cs │ │ ├── DataTableConverterTests.cs │ │ ├── DiscriminatedUnionConverterTests.cs │ │ ├── ExpandoObjectConverterTests.cs │ │ ├── IsoDateTimeConverterTests.cs │ │ ├── JavaScriptDateTimeConverterTests.cs │ │ ├── JsonValueConverterTests.cs │ │ ├── KeyValuePairConverterTests.cs │ │ ├── ObjectIdConverterTests.cs │ │ ├── RegexConverterTests.cs │ │ ├── StringEnumConverterTests.cs │ │ ├── VersionConverterTests.cs │ │ └── XmlNodeConverterTest.cs │ ├── ExceptionTests.cs │ ├── JsonArrayAttributeTests.cs │ ├── JsonConvertTest.cs │ ├── JsonTextReaderTest.cs │ ├── JsonTextWriterTest.cs │ ├── Linq │ │ ├── AnnotationsTests.cs │ │ ├── ComponentModel │ │ │ ├── BindingTests.cs │ │ │ └── JPropertyDescriptorTests.cs │ │ ├── DynamicTests.cs │ │ ├── JArrayTests.cs │ │ ├── JConstructorTests.cs │ │ ├── JObjectTests.cs │ │ ├── JPropertyTests.cs │ │ ├── JRawTests.cs │ │ ├── JTokenEqualityComparerTests.cs │ │ ├── JTokenReaderTest.cs │ │ ├── JTokenTests.cs │ │ ├── JTokenWriterTest.cs │ │ ├── JValueTests.cs │ │ ├── JsonPath │ │ │ ├── JPathExecuteTests.cs │ │ │ ├── JPathParseTests.cs │ │ │ └── QueryExpressionTests.cs │ │ ├── LinqToJsonTest.cs │ │ └── MergeTests.cs │ ├── LinqToSql │ │ ├── Department.cs │ │ ├── DepartmentConverter.cs │ │ ├── GuidByteArrayConverter.cs │ │ ├── LinqToSqlClasses.designer.cs │ │ ├── LinqToSqlClassesSerializationTests.cs │ │ ├── Person.cs │ │ └── Role.cs │ ├── Newtonsoft.Json.Tests.csproj │ ├── PerformanceTests.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Serialization │ │ ├── CamelCasePropertyNamesContractResolverTests.cs │ │ ├── ConstructorHandlingTests.cs │ │ ├── ContractResolverTests.cs │ │ ├── DefaultValueHandlingTests.cs │ │ ├── DependencyInjectionTests.cs │ │ ├── DynamicConcreteTests.cs │ │ ├── DynamicTests.cs │ │ ├── EntitiesSerializationTests.cs │ │ ├── ExtensionDataTests.cs │ │ ├── FSharpTests.cs │ │ ├── ImmutableCollectionsTests.cs │ │ ├── JsonPropertyCollectionTests.cs │ │ ├── JsonSerializerCollectionsTests.cs │ │ ├── JsonSerializerTest.cs │ │ ├── MetadataPropertyHandlingTests.cs │ │ ├── MissingMemberHandlingTests.cs │ │ ├── NullValueHandlingTests.cs │ │ ├── PopulateTests.cs │ │ ├── PreserveReferencesHandlingTests.cs │ │ ├── ReferenceLoopHandlingTests.cs │ │ ├── ReflectionAttributeProviderTests.cs │ │ ├── SerializationErrorHandlingTests.cs │ │ ├── SerializationEventAttributeTests.cs │ │ ├── ShouldSerializeTests.cs │ │ ├── TraceWriterTests.cs │ │ ├── TypeNameHandlingTests.cs │ │ └── WebApiIntegrationTests.cs │ ├── SpaceShipV2.bson │ ├── TestFixtureBase.cs │ ├── TestObjects │ │ ├── Aa.cs │ │ ├── AbstractGenericBase.cs │ │ ├── AnswerFilterModel.cs │ │ ├── Antworten.cs │ │ ├── ArgumentConverterPrecedenceClassConverter.cs │ │ ├── Article.cs │ │ ├── ArticleCollection.cs │ │ ├── BadJsonPropertyClass.cs │ │ ├── Bar.cs │ │ ├── Bb.cs │ │ ├── Car.cs │ │ ├── CircularReferenceClass.cs │ │ ├── CircularReferenceWithIdClass.cs │ │ ├── ClassAndMemberConverterClass.cs │ │ ├── ClassConverterPrecedenceClassConverter.cs │ │ ├── ClassWithArray.cs │ │ ├── ClassWithGuid.cs │ │ ├── Component.cs │ │ ├── Computer.cs │ │ ├── ConstructorCaseSensitivityClass.cs │ │ ├── ConstructorReadonlyFields.cs │ │ ├── Container.cs │ │ ├── Content.cs │ │ ├── ContentBaseClass.cs │ │ ├── ContentSubClass.cs │ │ ├── ConverableMembers.cs │ │ ├── ConverterPrecedenceClass.cs │ │ ├── ConverterPrecedenceClassConverter.cs │ │ ├── Currency.cs │ │ ├── CustomerDataSet.cs │ │ ├── DataContractSerializationAttributesClass.cs │ │ ├── DateTimeErrorObjectCollection.cs │ │ ├── DateTimeTestClass.cs │ │ ├── DateTimeWrapper.cs │ │ ├── DecimalTestClass.cs │ │ ├── DefaultValueAttributeTestClass.cs │ │ ├── DictionaryInterfaceClass.cs │ │ ├── DirectoryAccount.cs │ │ ├── DoubleClass.cs │ │ ├── EmployeeReference.cs │ │ ├── Event.cs │ │ ├── Event1.cs │ │ ├── Foo.cs │ │ ├── GameObject.cs │ │ ├── GenericImpl.cs │ │ ├── GenericListAndDictionaryInterfaceProperties.cs │ │ ├── GetOnlyPropertyClass.cs │ │ ├── GoogleMapGeocoderStructure.cs │ │ ├── HolderClass.cs │ │ ├── IMyInterface.cs │ │ ├── IPrivateImplementationA.cs │ │ ├── IPrivateImplementationB.cs │ │ ├── IPrivateOverriddenImplementation.cs │ │ ├── IdReferenceResolver.cs │ │ ├── IncompatibleJsonAttributeClass.cs │ │ ├── IntToFloatConverter.cs │ │ ├── InterfacePropertyTestClass.cs │ │ ├── Invoice.cs │ │ ├── Item.cs │ │ ├── JaggedArray.cs │ │ ├── JsonIgnoreAttributeOnClassTestClass.cs │ │ ├── JsonIgnoreAttributeTestClass.cs │ │ ├── JsonPropertyClass.cs │ │ ├── JsonPropertyWithHandlingValues.cs │ │ ├── ListErrorObject.cs │ │ ├── ListErrorObjectCollection.cs │ │ ├── ListOfIds.cs │ │ ├── ListTestClass.cs │ │ ├── LogEntry.cs │ │ ├── MemberConverterClass.cs │ │ ├── MemberConverterPrecedenceClassConverter.cs │ │ ├── MethodExecutorObject.cs │ │ ├── MetroPropertyNameResolver.cs │ │ ├── MetroStringConverter.cs │ │ ├── Movie.cs │ │ ├── MyClass.cs │ │ ├── Name.cs │ │ ├── NonRequest.cs │ │ ├── NullableDateTimeTestClass.cs │ │ ├── NullableGuid.cs │ │ ├── ObjectArrayPropertyTest.cs │ │ ├── ParticipantEntity.cs │ │ ├── Person.cs │ │ ├── PersonError.cs │ │ ├── PersonPropertyClass.cs │ │ ├── PersonRaw.cs │ │ ├── PersonReference.cs │ │ ├── PersonSerializable.cs │ │ ├── PersonWithPrivateConstructor.cs │ │ ├── PhoneNumber.cs │ │ ├── PocoDataContractSerializationAttributesClass.cs │ │ ├── PrivateConstructorTestClass.cs │ │ ├── PrivateConstructorWithPublicParameterizedConstructorTestClass.cs │ │ ├── PrivateImplementationAClass.cs │ │ ├── PrivateImplementationBClass.cs │ │ ├── PrivateMembersClass.cs │ │ ├── Product.cs │ │ ├── ProductCollection.cs │ │ ├── ProductShort.cs │ │ ├── PropertyCase.cs │ │ ├── PropertyItemConverter.cs │ │ ├── PublicParameterizedConstructorRequiringConverterTestClass.cs │ │ ├── PublicParameterizedConstructorTestClass.cs │ │ ├── PublicParameterizedConstructorWithNonPropertyParameterTestClass.cs │ │ ├── PublicParameterizedConstructorWithPropertyNameConflict.cs │ │ ├── Ratio.cs │ │ ├── RequestOnly.cs │ │ ├── RequiredMembersClass.cs │ │ ├── RequiredObject.cs │ │ ├── RoleTransfer.cs │ │ ├── SearchResult.cs │ │ ├── SelectListItem.cs │ │ ├── SerializationEventTestDictionary.cs │ │ ├── SerializationEventTestList.cs │ │ ├── SerializationEventTestObject.cs │ │ ├── SerializationEventTestObjectWithConstructor.cs │ │ ├── SetOnlyPropertyClass.cs │ │ ├── SetOnlyPropertyClass2.cs │ │ ├── Shape.cs │ │ ├── Shortie.cs │ │ ├── SqlTypesDataSet.Designer.cs │ │ ├── Store.cs │ │ ├── StoreColor.cs │ │ ├── StructTest.cs │ │ ├── SubKlass.cs │ │ ├── SuperKlass.cs │ │ ├── TestComponent.cs │ │ ├── TestComponentSimple.cs │ │ ├── TestObject.cs │ │ ├── TypeClass.cs │ │ ├── TypedSubHashtable.cs │ │ ├── UriGuidTimeSpanTestClass.cs │ │ ├── UserNullable.cs │ │ ├── VersionKeyedCollection.cs │ │ ├── WagePerson.cs │ │ ├── Widget.cs │ │ ├── Widget1.cs │ │ ├── WidgetId.cs │ │ ├── WidgetId1.cs │ │ ├── WidgetIdJsonConverter.cs │ │ └── WithEnums.cs │ ├── Utilities │ │ ├── ConvertUtilsTests.cs │ │ ├── DateTimeUtilsTests.cs │ │ ├── DynamicReflectionDelegateFactoryTests.cs │ │ ├── ExpressionReflectionDelegateFactoryTests.cs │ │ ├── LateboundReflectionDelegateFactoryTests.cs │ │ ├── ReflectionUtilsTests.cs │ │ └── StringUtilsTests.cs │ ├── copy_sources_from_origin.py │ ├── large.json │ └── packages.config ├── Newtonsoft.Json │ ├── Bson │ │ ├── BsonBinaryType.cs │ │ ├── BsonBinaryWriter.cs │ │ ├── BsonObjectId.cs │ │ ├── BsonReader.cs │ │ ├── BsonToken.cs │ │ ├── BsonType.cs │ │ └── BsonWriter.cs │ ├── ConstructorHandling.cs │ ├── Converters │ │ ├── BinaryConverter.cs │ │ ├── BsonObjectIdConverter.cs │ │ ├── CustomCreationConverter.cs │ │ ├── DataSetConverter.cs │ │ ├── DataTableConverter.cs │ │ ├── DateTimeConverterBase.cs │ │ ├── DiscriminatedUnionConverter.cs │ │ ├── EntityKeyMemberConverter.cs │ │ ├── ExpandoObjectConverter.cs │ │ ├── IsoDateTimeConverter.cs │ │ ├── JavaScriptDateTimeConverter.cs │ │ ├── JsonValueConverter.cs │ │ ├── KeyValuePairConverter.cs │ │ ├── RegexConverter.cs │ │ ├── StringEnumConverter.cs │ │ ├── VersionConverter.cs │ │ └── XmlNodeConverter.cs │ ├── DateFormatHandling.cs │ ├── DateParseHandling.cs │ ├── DateTimeZoneHandling.cs │ ├── DefaultValueHandling.cs │ ├── FloatFormatHandling.cs │ ├── FloatParseHandling.cs │ ├── FormatterAssemblyStyle.cs │ ├── Formatting.cs │ ├── IArrayPool.cs │ ├── IJsonLineInfo.cs │ ├── JsonArrayAttribute.cs │ ├── JsonConstructorAttribute.cs │ ├── JsonContainerAttribute.cs │ ├── JsonConvert.cs │ ├── JsonConverter.cs │ ├── JsonConverterAttribute.cs │ ├── JsonConverterCollection.cs │ ├── JsonDictionaryAttribute.cs │ ├── JsonException.cs │ ├── JsonExtensionDataAttribute.cs │ ├── JsonIgnoreAttribute.cs │ ├── JsonObjectAttribute.cs │ ├── JsonPosition.cs │ ├── JsonPropertyAttribute.cs │ ├── JsonReader.cs │ ├── JsonReaderException.cs │ ├── JsonRequiredAttribute.cs │ ├── JsonSerializationException.cs │ ├── JsonSerializer.cs │ ├── JsonSerializerSettings.cs │ ├── JsonTextReader.cs │ ├── JsonTextWriter.cs │ ├── JsonToken.cs │ ├── JsonValidatingReader.cs │ ├── JsonWriter.cs │ ├── JsonWriterException.cs │ ├── Linq │ │ ├── CommentHandling.cs │ │ ├── Extensions.cs │ │ ├── IJEnumerable.cs │ │ ├── JArray.cs │ │ ├── JConstructor.cs │ │ ├── JContainer.cs │ │ ├── JEnumerable.cs │ │ ├── JObject.cs │ │ ├── JProperty.cs │ │ ├── JPropertyDescriptor.cs │ │ ├── JPropertyKeyedCollection.cs │ │ ├── JRaw.cs │ │ ├── JToken.cs │ │ ├── JTokenEqualityComparer.cs │ │ ├── JTokenReader.cs │ │ ├── JTokenType.cs │ │ ├── JTokenWriter.cs │ │ ├── JValue.cs │ │ ├── JsonLoadSettings.cs │ │ ├── JsonMergeSettings.cs │ │ ├── JsonPath │ │ │ ├── ArrayIndexFilter.cs │ │ │ ├── ArrayMultipleIndexFilter.cs │ │ │ ├── ArraySliceFilter.cs │ │ │ ├── FieldFilter.cs │ │ │ ├── FieldMultipleFilter.cs │ │ │ ├── JPath.cs │ │ │ ├── PathFilter.cs │ │ │ ├── QueryExpression.cs │ │ │ ├── QueryFilter.cs │ │ │ └── ScanFilter.cs │ │ ├── MergeArrayHandling.cs │ │ └── MergeNullValueHandling.cs │ ├── MemberSerialization.cs │ ├── MetadataPropertyHandling.cs │ ├── MissingMemberHandling.cs │ ├── Newtonsoft.Json.csproj │ ├── NullValueHandling.cs │ ├── ObjectCreationHandling.cs │ ├── PreserveReferencesHandling.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ReferenceLoopHandling.cs │ ├── Required.cs │ ├── Schema │ │ ├── Extensions.cs │ │ ├── JsonSchema.cs │ │ ├── JsonSchemaBuilder.cs │ │ ├── JsonSchemaConstants.cs │ │ ├── JsonSchemaException.cs │ │ ├── JsonSchemaGenerator.cs │ │ ├── JsonSchemaModel.cs │ │ ├── JsonSchemaModelBuilder.cs │ │ ├── JsonSchemaNode.cs │ │ ├── JsonSchemaNodeCollection.cs │ │ ├── JsonSchemaResolver.cs │ │ ├── JsonSchemaType.cs │ │ ├── JsonSchemaWriter.cs │ │ ├── UndefinedSchemaIdHandling.cs │ │ ├── ValidationEventArgs.cs │ │ └── ValidationEventHandler.cs │ ├── Serialization │ │ ├── CachedAttributeGetter.cs │ │ ├── CamelCaseNamingStrategy.cs │ │ ├── CamelCasePropertyNamesContractResolver.cs │ │ ├── DefaultContractResolver.cs │ │ ├── DefaultReferenceResolver.cs │ │ ├── DefaultSerializationBinder.cs │ │ ├── DiagnosticsTraceWriter.cs │ │ ├── DynamicValueProvider.cs │ │ ├── ErrorContext.cs │ │ ├── ErrorEventArgs.cs │ │ ├── ExpressionValueProvider.cs │ │ ├── IAttributeProvider.cs │ │ ├── IContractResolver.cs │ │ ├── IReferenceResolver.cs │ │ ├── ITraceWriter.cs │ │ ├── IValueProvider.cs │ │ ├── JsonArrayContract.cs │ │ ├── JsonContainerContract.cs │ │ ├── JsonContract.cs │ │ ├── JsonDictionaryContract.cs │ │ ├── JsonDynamicContract.cs │ │ ├── JsonFormatterConverter.cs │ │ ├── JsonISerializableContract.cs │ │ ├── JsonLinqContract.cs │ │ ├── JsonObjectContract.cs │ │ ├── JsonPrimitiveContract.cs │ │ ├── JsonProperty.cs │ │ ├── JsonPropertyCollection.cs │ │ ├── JsonSerializerInternalBase.cs │ │ ├── JsonSerializerInternalReader.cs │ │ ├── JsonSerializerInternalWriter.cs │ │ ├── JsonSerializerProxy.cs │ │ ├── JsonStringContract.cs │ │ ├── JsonTypeReflector.cs │ │ ├── MemoryTraceWriter.cs │ │ ├── NamingStrategy.cs │ │ ├── ObjectConstructor.cs │ │ ├── OnErrorAttribute.cs │ │ ├── ReflectionAttributeProvider.cs │ │ ├── ReflectionValueProvider.cs │ │ ├── TraceJsonReader.cs │ │ └── TraceJsonWriter.cs │ ├── SerializationBinder.cs │ ├── StringEscapeHandling.cs │ ├── TraceLevel.cs │ ├── TypeNameHandling.cs │ ├── Utilities │ │ ├── AotHelper.cs │ │ ├── Base64Encoder.cs │ │ ├── BidirectionalDictionary.cs │ │ ├── CollectionUtils.cs │ │ ├── CollectionWrapper.cs │ │ ├── ConvertUtils.cs │ │ ├── DateTimeParser.cs │ │ ├── DateTimeUtils.cs │ │ ├── DictionaryWrapper.cs │ │ ├── DynamicProxy.cs │ │ ├── DynamicProxyMetaObject.cs │ │ ├── DynamicReflectionDelegateFactory.cs │ │ ├── DynamicUtils.cs │ │ ├── EnumUtils.cs │ │ ├── EnumValue.cs │ │ ├── ExpressionReflectionDelegateFactory.cs │ │ ├── FSharpUtils.cs │ │ ├── ILGeneratorExtensions.cs │ │ ├── ImmutableCollectionsUtils.cs │ │ ├── JavaScriptUtils.cs │ │ ├── JsonTokenUtils.cs │ │ ├── LateBoundReflectionDelegateFactory.cs │ │ ├── LinqBridge.cs │ │ ├── MathUtils.cs │ │ ├── MethodCall.cs │ │ ├── MiscellaneousUtils.cs │ │ ├── PropertyNameTable.cs │ │ ├── ReflectionDelegateFactory.cs │ │ ├── ReflectionObject.cs │ │ ├── ReflectionUtils.cs │ │ ├── StringBuffer.cs │ │ ├── StringReference.cs │ │ ├── StringUtils.cs │ │ ├── ThreadSafeStore.cs │ │ ├── TypeExtensions.cs │ │ └── ValidationUtils.cs │ ├── WriteState.cs │ └── copy_sources_from_origin.py └── UnityPackage │ ├── .gitignore │ ├── Assets │ ├── Artifacts.meta │ ├── Artifacts │ │ ├── Editor.meta │ │ └── Editor │ │ │ └── .gitignore │ ├── JsonNetSample.cs │ ├── JsonNetSample.cs.meta │ ├── JsonNetSample.unity │ ├── JsonNetSample.unity.meta │ ├── link.xml │ └── link.xml.meta │ ├── JsonNet-Lite.unitypackage.json │ ├── JsonNet.base.json │ ├── JsonNet.unitypackage.json │ └── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── Physics2DSettings.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityAdsSettings.asset │ └── UnityConnectSettings.asset └── tools ├── nuget ├── NuGet.Config ├── NuGet.targets ├── nuget.exe └── packages.config └── unity3d └── pdb2mdb.exe /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/.gitignore -------------------------------------------------------------------------------- /Json.Net.Unity3D.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/Json.Net.Unity3D.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/NOTE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/appveyor.yml -------------------------------------------------------------------------------- /docs/UnitTest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/docs/UnitTest.md -------------------------------------------------------------------------------- /docs/UnitTestResult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/docs/UnitTestResult.png -------------------------------------------------------------------------------- /docs/UnitTestSummary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/docs/UnitTestSummary.png -------------------------------------------------------------------------------- /docs/UwpWorkaround.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/docs/UwpWorkaround.md -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Bson/BsonReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Bson/BsonReaderTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Bson/BsonWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Bson/BsonWriterTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Converters/BinaryConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Converters/BinaryConverterTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Converters/CustomCreationConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Converters/CustomCreationConverterTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Converters/DataSetConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Converters/DataSetConverterTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Converters/DataTableConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Converters/DataTableConverterTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Converters/DiscriminatedUnionConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Converters/DiscriminatedUnionConverterTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Converters/ExpandoObjectConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Converters/ExpandoObjectConverterTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Converters/IsoDateTimeConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Converters/IsoDateTimeConverterTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Converters/JavaScriptDateTimeConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Converters/JavaScriptDateTimeConverterTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Converters/JsonValueConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Converters/JsonValueConverterTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Converters/KeyValuePairConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Converters/KeyValuePairConverterTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Converters/ObjectIdConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Converters/ObjectIdConverterTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Converters/RegexConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Converters/RegexConverterTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Converters/StringEnumConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Converters/StringEnumConverterTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Converters/VersionConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Converters/VersionConverterTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Converters/XmlNodeConverterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Converters/XmlNodeConverterTest.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/ExceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/ExceptionTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/JsonArrayAttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/JsonArrayAttributeTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/JsonConvertTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/JsonConvertTest.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/JsonTextReaderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/JsonTextReaderTest.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/JsonTextWriterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/JsonTextWriterTest.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Linq/AnnotationsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Linq/AnnotationsTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Linq/ComponentModel/BindingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Linq/ComponentModel/BindingTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Linq/ComponentModel/JPropertyDescriptorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Linq/ComponentModel/JPropertyDescriptorTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Linq/DynamicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Linq/DynamicTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Linq/JArrayTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Linq/JArrayTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Linq/JConstructorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Linq/JConstructorTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Linq/JObjectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Linq/JObjectTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Linq/JPropertyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Linq/JPropertyTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Linq/JRawTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Linq/JRawTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Linq/JTokenEqualityComparerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Linq/JTokenEqualityComparerTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Linq/JTokenReaderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Linq/JTokenReaderTest.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Linq/JTokenTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Linq/JTokenTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Linq/JTokenWriterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Linq/JTokenWriterTest.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Linq/JValueTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Linq/JValueTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Linq/JsonPath/JPathExecuteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Linq/JsonPath/JPathExecuteTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Linq/JsonPath/JPathParseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Linq/JsonPath/JPathParseTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Linq/JsonPath/QueryExpressionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Linq/JsonPath/QueryExpressionTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Linq/LinqToJsonTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Linq/LinqToJsonTest.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Linq/MergeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Linq/MergeTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/LinqToSql/Department.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/LinqToSql/Department.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/LinqToSql/DepartmentConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/LinqToSql/DepartmentConverter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/LinqToSql/GuidByteArrayConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/LinqToSql/GuidByteArrayConverter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/LinqToSql/LinqToSqlClasses.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/LinqToSql/LinqToSqlClasses.designer.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/LinqToSql/LinqToSqlClassesSerializationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/LinqToSql/LinqToSqlClassesSerializationTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/LinqToSql/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/LinqToSql/Person.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/LinqToSql/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/LinqToSql/Role.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Newtonsoft.Json.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Newtonsoft.Json.Tests.csproj -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/PerformanceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/PerformanceTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Serialization/CamelCasePropertyNamesContractResolverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Serialization/CamelCasePropertyNamesContractResolverTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Serialization/ConstructorHandlingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Serialization/ConstructorHandlingTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Serialization/ContractResolverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Serialization/ContractResolverTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Serialization/DefaultValueHandlingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Serialization/DefaultValueHandlingTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Serialization/DependencyInjectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Serialization/DependencyInjectionTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Serialization/DynamicConcreteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Serialization/DynamicConcreteTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Serialization/DynamicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Serialization/DynamicTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Serialization/EntitiesSerializationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Serialization/EntitiesSerializationTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Serialization/ExtensionDataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Serialization/ExtensionDataTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Serialization/FSharpTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Serialization/FSharpTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Serialization/ImmutableCollectionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Serialization/ImmutableCollectionsTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Serialization/JsonPropertyCollectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Serialization/JsonPropertyCollectionTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Serialization/JsonSerializerCollectionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Serialization/JsonSerializerCollectionsTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Serialization/JsonSerializerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Serialization/JsonSerializerTest.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Serialization/MetadataPropertyHandlingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Serialization/MetadataPropertyHandlingTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Serialization/MissingMemberHandlingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Serialization/MissingMemberHandlingTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Serialization/NullValueHandlingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Serialization/NullValueHandlingTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Serialization/PopulateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Serialization/PopulateTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Serialization/PreserveReferencesHandlingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Serialization/PreserveReferencesHandlingTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Serialization/ReferenceLoopHandlingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Serialization/ReferenceLoopHandlingTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Serialization/ReflectionAttributeProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Serialization/ReflectionAttributeProviderTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Serialization/SerializationErrorHandlingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Serialization/SerializationErrorHandlingTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Serialization/SerializationEventAttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Serialization/SerializationEventAttributeTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Serialization/ShouldSerializeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Serialization/ShouldSerializeTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Serialization/TraceWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Serialization/TraceWriterTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Serialization/TypeNameHandlingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Serialization/TypeNameHandlingTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Serialization/WebApiIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Serialization/WebApiIntegrationTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/SpaceShipV2.bson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/SpaceShipV2.bson -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestFixtureBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestFixtureBase.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/Aa.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/Aa.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/AbstractGenericBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/AbstractGenericBase.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/AnswerFilterModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/AnswerFilterModel.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/Antworten.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/Antworten.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/ArgumentConverterPrecedenceClassConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/ArgumentConverterPrecedenceClassConverter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/Article.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/Article.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/ArticleCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/ArticleCollection.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/BadJsonPropertyClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/BadJsonPropertyClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/Bar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/Bar.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/Bb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/Bb.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/Car.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/CircularReferenceClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/CircularReferenceClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/CircularReferenceWithIdClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/CircularReferenceWithIdClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/ClassAndMemberConverterClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/ClassAndMemberConverterClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/ClassConverterPrecedenceClassConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/ClassConverterPrecedenceClassConverter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/ClassWithArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/ClassWithArray.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/ClassWithGuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/ClassWithGuid.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/Component.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/Component.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/Computer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/Computer.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/ConstructorCaseSensitivityClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/ConstructorCaseSensitivityClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/ConstructorReadonlyFields.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/ConstructorReadonlyFields.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/Container.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/Container.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/Content.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/Content.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/ContentBaseClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/ContentBaseClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/ContentSubClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/ContentSubClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/ConverableMembers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/ConverableMembers.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/ConverterPrecedenceClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/ConverterPrecedenceClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/ConverterPrecedenceClassConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/ConverterPrecedenceClassConverter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/Currency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/Currency.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/CustomerDataSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/CustomerDataSet.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/DataContractSerializationAttributesClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/DataContractSerializationAttributesClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/DateTimeErrorObjectCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/DateTimeErrorObjectCollection.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/DateTimeTestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/DateTimeTestClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/DateTimeWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/DateTimeWrapper.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/DecimalTestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/DecimalTestClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/DefaultValueAttributeTestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/DefaultValueAttributeTestClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/DictionaryInterfaceClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/DictionaryInterfaceClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/DirectoryAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/DirectoryAccount.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/DoubleClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/DoubleClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/EmployeeReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/EmployeeReference.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/Event.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/Event1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/Event1.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/Foo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/Foo.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/GameObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/GameObject.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/GenericImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/GenericImpl.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/GenericListAndDictionaryInterfaceProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/GenericListAndDictionaryInterfaceProperties.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/GetOnlyPropertyClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/GetOnlyPropertyClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/GoogleMapGeocoderStructure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/GoogleMapGeocoderStructure.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/HolderClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/HolderClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/IMyInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/IMyInterface.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/IPrivateImplementationA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/IPrivateImplementationA.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/IPrivateImplementationB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/IPrivateImplementationB.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/IPrivateOverriddenImplementation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/IPrivateOverriddenImplementation.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/IdReferenceResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/IdReferenceResolver.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/IncompatibleJsonAttributeClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/IncompatibleJsonAttributeClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/IntToFloatConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/IntToFloatConverter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/InterfacePropertyTestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/InterfacePropertyTestClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/Invoice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/Invoice.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/Item.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/JaggedArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/JaggedArray.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/JsonIgnoreAttributeOnClassTestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/JsonIgnoreAttributeOnClassTestClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/JsonIgnoreAttributeTestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/JsonIgnoreAttributeTestClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/JsonPropertyClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/JsonPropertyClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/JsonPropertyWithHandlingValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/JsonPropertyWithHandlingValues.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/ListErrorObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/ListErrorObject.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/ListErrorObjectCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/ListErrorObjectCollection.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/ListOfIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/ListOfIds.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/ListTestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/ListTestClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/LogEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/LogEntry.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/MemberConverterClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/MemberConverterClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/MemberConverterPrecedenceClassConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/MemberConverterPrecedenceClassConverter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/MethodExecutorObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/MethodExecutorObject.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/MetroPropertyNameResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/MetroPropertyNameResolver.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/MetroStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/MetroStringConverter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/Movie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/Movie.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/MyClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/MyClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/Name.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/Name.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/NonRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/NonRequest.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/NullableDateTimeTestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/NullableDateTimeTestClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/NullableGuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/NullableGuid.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/ObjectArrayPropertyTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/ObjectArrayPropertyTest.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/ParticipantEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/ParticipantEntity.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/Person.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/PersonError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/PersonError.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/PersonPropertyClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/PersonPropertyClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/PersonRaw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/PersonRaw.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/PersonReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/PersonReference.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/PersonSerializable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/PersonSerializable.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/PersonWithPrivateConstructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/PersonWithPrivateConstructor.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/PhoneNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/PhoneNumber.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/PocoDataContractSerializationAttributesClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/PocoDataContractSerializationAttributesClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/PrivateConstructorTestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/PrivateConstructorTestClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/PrivateConstructorWithPublicParameterizedConstructorTestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/PrivateConstructorWithPublicParameterizedConstructorTestClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/PrivateImplementationAClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/PrivateImplementationAClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/PrivateImplementationBClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/PrivateImplementationBClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/PrivateMembersClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/PrivateMembersClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/Product.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/ProductCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/ProductCollection.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/ProductShort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/ProductShort.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/PropertyCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/PropertyCase.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/PropertyItemConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/PropertyItemConverter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/PublicParameterizedConstructorRequiringConverterTestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/PublicParameterizedConstructorRequiringConverterTestClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/PublicParameterizedConstructorTestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/PublicParameterizedConstructorTestClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/PublicParameterizedConstructorWithNonPropertyParameterTestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/PublicParameterizedConstructorWithNonPropertyParameterTestClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/PublicParameterizedConstructorWithPropertyNameConflict.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/PublicParameterizedConstructorWithPropertyNameConflict.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/Ratio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/Ratio.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/RequestOnly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/RequestOnly.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/RequiredMembersClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/RequiredMembersClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/RequiredObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/RequiredObject.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/RoleTransfer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/RoleTransfer.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/SearchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/SearchResult.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/SelectListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/SelectListItem.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/SerializationEventTestDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/SerializationEventTestDictionary.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/SerializationEventTestList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/SerializationEventTestList.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/SerializationEventTestObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/SerializationEventTestObject.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/SerializationEventTestObjectWithConstructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/SerializationEventTestObjectWithConstructor.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/SetOnlyPropertyClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/SetOnlyPropertyClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/SetOnlyPropertyClass2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/SetOnlyPropertyClass2.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/Shape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/Shape.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/Shortie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/Shortie.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/SqlTypesDataSet.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/SqlTypesDataSet.Designer.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/Store.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/StoreColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/StoreColor.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/StructTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/StructTest.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/SubKlass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/SubKlass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/SuperKlass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/SuperKlass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/TestComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/TestComponent.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/TestComponentSimple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/TestComponentSimple.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/TestObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/TestObject.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/TypeClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/TypeClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/TypedSubHashtable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/TypedSubHashtable.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/UriGuidTimeSpanTestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/UriGuidTimeSpanTestClass.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/UserNullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/UserNullable.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/VersionKeyedCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/VersionKeyedCollection.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/WagePerson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/WagePerson.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/Widget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/Widget.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/Widget1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/Widget1.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/WidgetId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/WidgetId.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/WidgetId1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/WidgetId1.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/WidgetIdJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/WidgetIdJsonConverter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/TestObjects/WithEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/TestObjects/WithEnums.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Utilities/ConvertUtilsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Utilities/ConvertUtilsTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Utilities/DateTimeUtilsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Utilities/DateTimeUtilsTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Utilities/DynamicReflectionDelegateFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Utilities/DynamicReflectionDelegateFactoryTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Utilities/ExpressionReflectionDelegateFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Utilities/ExpressionReflectionDelegateFactoryTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Utilities/LateboundReflectionDelegateFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Utilities/LateboundReflectionDelegateFactoryTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Utilities/ReflectionUtilsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Utilities/ReflectionUtilsTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/Utilities/StringUtilsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/Utilities/StringUtilsTests.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/copy_sources_from_origin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/copy_sources_from_origin.py -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/large.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/large.json -------------------------------------------------------------------------------- /src/Newtonsoft.Json.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json.Tests/packages.config -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Bson/BsonBinaryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Bson/BsonBinaryType.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Bson/BsonBinaryWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Bson/BsonBinaryWriter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Bson/BsonObjectId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Bson/BsonObjectId.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Bson/BsonReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Bson/BsonReader.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Bson/BsonToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Bson/BsonToken.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Bson/BsonType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Bson/BsonType.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Bson/BsonWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Bson/BsonWriter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/ConstructorHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/ConstructorHandling.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Converters/BinaryConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Converters/BinaryConverter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Converters/BsonObjectIdConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Converters/BsonObjectIdConverter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Converters/CustomCreationConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Converters/CustomCreationConverter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Converters/DataSetConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Converters/DataSetConverter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Converters/DataTableConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Converters/DataTableConverter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Converters/DateTimeConverterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Converters/DateTimeConverterBase.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Converters/DiscriminatedUnionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Converters/DiscriminatedUnionConverter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Converters/EntityKeyMemberConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Converters/EntityKeyMemberConverter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Converters/ExpandoObjectConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Converters/ExpandoObjectConverter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Converters/IsoDateTimeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Converters/IsoDateTimeConverter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Converters/JavaScriptDateTimeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Converters/JavaScriptDateTimeConverter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Converters/JsonValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Converters/JsonValueConverter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Converters/KeyValuePairConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Converters/KeyValuePairConverter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Converters/RegexConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Converters/RegexConverter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Converters/StringEnumConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Converters/StringEnumConverter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Converters/VersionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Converters/VersionConverter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Converters/XmlNodeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Converters/XmlNodeConverter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/DateFormatHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/DateFormatHandling.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/DateParseHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/DateParseHandling.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/DateTimeZoneHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/DateTimeZoneHandling.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/DefaultValueHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/DefaultValueHandling.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/FloatFormatHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/FloatFormatHandling.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/FloatParseHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/FloatParseHandling.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/FormatterAssemblyStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/FormatterAssemblyStyle.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Formatting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Formatting.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/IArrayPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/IArrayPool.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/IJsonLineInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/IJsonLineInfo.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/JsonArrayAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/JsonArrayAttribute.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/JsonConstructorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/JsonConstructorAttribute.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/JsonContainerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/JsonContainerAttribute.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/JsonConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/JsonConvert.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/JsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/JsonConverter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/JsonConverterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/JsonConverterAttribute.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/JsonConverterCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/JsonConverterCollection.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/JsonDictionaryAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/JsonDictionaryAttribute.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/JsonException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/JsonException.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/JsonExtensionDataAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/JsonExtensionDataAttribute.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/JsonIgnoreAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/JsonIgnoreAttribute.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/JsonObjectAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/JsonObjectAttribute.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/JsonPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/JsonPosition.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/JsonPropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/JsonPropertyAttribute.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/JsonReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/JsonReader.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/JsonReaderException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/JsonReaderException.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/JsonRequiredAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/JsonRequiredAttribute.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/JsonSerializationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/JsonSerializationException.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/JsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/JsonSerializer.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/JsonSerializerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/JsonSerializerSettings.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/JsonTextReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/JsonTextReader.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/JsonTextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/JsonTextWriter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/JsonToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/JsonToken.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/JsonValidatingReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/JsonValidatingReader.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/JsonWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/JsonWriter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/JsonWriterException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/JsonWriterException.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Linq/CommentHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Linq/CommentHandling.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Linq/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Linq/Extensions.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Linq/IJEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Linq/IJEnumerable.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Linq/JArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Linq/JArray.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Linq/JConstructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Linq/JConstructor.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Linq/JContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Linq/JContainer.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Linq/JEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Linq/JEnumerable.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Linq/JObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Linq/JObject.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Linq/JProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Linq/JProperty.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Linq/JPropertyDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Linq/JPropertyDescriptor.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Linq/JPropertyKeyedCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Linq/JPropertyKeyedCollection.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Linq/JRaw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Linq/JRaw.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Linq/JToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Linq/JToken.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Linq/JTokenEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Linq/JTokenEqualityComparer.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Linq/JTokenReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Linq/JTokenReader.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Linq/JTokenType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Linq/JTokenType.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Linq/JTokenWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Linq/JTokenWriter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Linq/JValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Linq/JValue.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Linq/JsonLoadSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Linq/JsonLoadSettings.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Linq/JsonMergeSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Linq/JsonMergeSettings.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Linq/JsonPath/ArrayIndexFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Linq/JsonPath/ArrayIndexFilter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Linq/JsonPath/ArrayMultipleIndexFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Linq/JsonPath/ArrayMultipleIndexFilter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Linq/JsonPath/ArraySliceFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Linq/JsonPath/ArraySliceFilter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Linq/JsonPath/FieldFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Linq/JsonPath/FieldFilter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Linq/JsonPath/FieldMultipleFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Linq/JsonPath/FieldMultipleFilter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Linq/JsonPath/JPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Linq/JsonPath/JPath.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Linq/JsonPath/PathFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Linq/JsonPath/PathFilter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Linq/JsonPath/QueryExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Linq/JsonPath/QueryExpression.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Linq/JsonPath/QueryFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Linq/JsonPath/QueryFilter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Linq/JsonPath/ScanFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Linq/JsonPath/ScanFilter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Linq/MergeArrayHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Linq/MergeArrayHandling.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Linq/MergeNullValueHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Linq/MergeNullValueHandling.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/MemberSerialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/MemberSerialization.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/MetadataPropertyHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/MetadataPropertyHandling.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/MissingMemberHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/MissingMemberHandling.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Newtonsoft.Json.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Newtonsoft.Json.csproj -------------------------------------------------------------------------------- /src/Newtonsoft.Json/NullValueHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/NullValueHandling.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/ObjectCreationHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/ObjectCreationHandling.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/PreserveReferencesHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/PreserveReferencesHandling.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/ReferenceLoopHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/ReferenceLoopHandling.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Required.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Required.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Schema/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Schema/Extensions.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Schema/JsonSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Schema/JsonSchema.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Schema/JsonSchemaBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Schema/JsonSchemaBuilder.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Schema/JsonSchemaConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Schema/JsonSchemaConstants.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Schema/JsonSchemaException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Schema/JsonSchemaException.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Schema/JsonSchemaGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Schema/JsonSchemaGenerator.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Schema/JsonSchemaModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Schema/JsonSchemaModel.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Schema/JsonSchemaModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Schema/JsonSchemaModelBuilder.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Schema/JsonSchemaNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Schema/JsonSchemaNode.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Schema/JsonSchemaNodeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Schema/JsonSchemaNodeCollection.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Schema/JsonSchemaResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Schema/JsonSchemaResolver.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Schema/JsonSchemaType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Schema/JsonSchemaType.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Schema/JsonSchemaWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Schema/JsonSchemaWriter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Schema/UndefinedSchemaIdHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Schema/UndefinedSchemaIdHandling.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Schema/ValidationEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Schema/ValidationEventArgs.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Schema/ValidationEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Schema/ValidationEventHandler.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/CachedAttributeGetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/CachedAttributeGetter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/CamelCaseNamingStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/CamelCaseNamingStrategy.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/CamelCasePropertyNamesContractResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/CamelCasePropertyNamesContractResolver.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/DefaultContractResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/DefaultContractResolver.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/DefaultReferenceResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/DefaultReferenceResolver.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/DefaultSerializationBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/DefaultSerializationBinder.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/DiagnosticsTraceWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/DiagnosticsTraceWriter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/DynamicValueProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/DynamicValueProvider.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/ErrorContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/ErrorContext.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/ErrorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/ErrorEventArgs.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/ExpressionValueProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/ExpressionValueProvider.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/IAttributeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/IAttributeProvider.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/IContractResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/IContractResolver.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/IReferenceResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/IReferenceResolver.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/ITraceWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/ITraceWriter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/IValueProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/IValueProvider.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/JsonArrayContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/JsonArrayContract.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/JsonContainerContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/JsonContainerContract.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/JsonContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/JsonContract.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/JsonDictionaryContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/JsonDictionaryContract.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/JsonDynamicContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/JsonDynamicContract.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/JsonFormatterConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/JsonFormatterConverter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/JsonISerializableContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/JsonISerializableContract.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/JsonLinqContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/JsonLinqContract.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/JsonObjectContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/JsonObjectContract.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/JsonPrimitiveContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/JsonPrimitiveContract.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/JsonProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/JsonProperty.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/JsonPropertyCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/JsonPropertyCollection.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/JsonSerializerInternalBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/JsonSerializerInternalBase.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/JsonSerializerInternalReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/JsonSerializerInternalReader.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/JsonSerializerInternalWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/JsonSerializerInternalWriter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/JsonSerializerProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/JsonSerializerProxy.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/JsonStringContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/JsonStringContract.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/JsonTypeReflector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/JsonTypeReflector.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/MemoryTraceWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/MemoryTraceWriter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/NamingStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/NamingStrategy.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/ObjectConstructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/ObjectConstructor.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/OnErrorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/OnErrorAttribute.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/ReflectionAttributeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/ReflectionAttributeProvider.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/ReflectionValueProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/ReflectionValueProvider.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/TraceJsonReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/TraceJsonReader.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Serialization/TraceJsonWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Serialization/TraceJsonWriter.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/SerializationBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/SerializationBinder.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/StringEscapeHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/StringEscapeHandling.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/TraceLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/TraceLevel.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/TypeNameHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/TypeNameHandling.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/AotHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/AotHelper.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/Base64Encoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/Base64Encoder.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/BidirectionalDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/BidirectionalDictionary.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/CollectionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/CollectionUtils.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/CollectionWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/CollectionWrapper.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/ConvertUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/ConvertUtils.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/DateTimeParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/DateTimeParser.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/DateTimeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/DateTimeUtils.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/DictionaryWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/DictionaryWrapper.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/DynamicProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/DynamicProxy.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/DynamicProxyMetaObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/DynamicProxyMetaObject.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/DynamicReflectionDelegateFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/DynamicReflectionDelegateFactory.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/DynamicUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/DynamicUtils.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/EnumUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/EnumUtils.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/EnumValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/EnumValue.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/ExpressionReflectionDelegateFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/ExpressionReflectionDelegateFactory.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/FSharpUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/FSharpUtils.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/ILGeneratorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/ILGeneratorExtensions.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/ImmutableCollectionsUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/ImmutableCollectionsUtils.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/JavaScriptUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/JavaScriptUtils.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/JsonTokenUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/JsonTokenUtils.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/LateBoundReflectionDelegateFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/LateBoundReflectionDelegateFactory.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/LinqBridge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/LinqBridge.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/MathUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/MathUtils.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/MethodCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/MethodCall.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/MiscellaneousUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/MiscellaneousUtils.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/PropertyNameTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/PropertyNameTable.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/ReflectionDelegateFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/ReflectionDelegateFactory.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/ReflectionObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/ReflectionObject.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/ReflectionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/ReflectionUtils.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/StringBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/StringBuffer.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/StringReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/StringReference.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/StringUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/StringUtils.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/ThreadSafeStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/ThreadSafeStore.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/TypeExtensions.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/Utilities/ValidationUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/Utilities/ValidationUtils.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/WriteState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/WriteState.cs -------------------------------------------------------------------------------- /src/Newtonsoft.Json/copy_sources_from_origin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/Newtonsoft.Json/copy_sources_from_origin.py -------------------------------------------------------------------------------- /src/UnityPackage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/UnityPackage/.gitignore -------------------------------------------------------------------------------- /src/UnityPackage/Assets/Artifacts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/UnityPackage/Assets/Artifacts.meta -------------------------------------------------------------------------------- /src/UnityPackage/Assets/Artifacts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/UnityPackage/Assets/Artifacts/Editor.meta -------------------------------------------------------------------------------- /src/UnityPackage/Assets/Artifacts/Editor/.gitignore: -------------------------------------------------------------------------------- 1 | # Stub -------------------------------------------------------------------------------- /src/UnityPackage/Assets/JsonNetSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/UnityPackage/Assets/JsonNetSample.cs -------------------------------------------------------------------------------- /src/UnityPackage/Assets/JsonNetSample.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/UnityPackage/Assets/JsonNetSample.cs.meta -------------------------------------------------------------------------------- /src/UnityPackage/Assets/JsonNetSample.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/UnityPackage/Assets/JsonNetSample.unity -------------------------------------------------------------------------------- /src/UnityPackage/Assets/JsonNetSample.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/UnityPackage/Assets/JsonNetSample.unity.meta -------------------------------------------------------------------------------- /src/UnityPackage/Assets/link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/UnityPackage/Assets/link.xml -------------------------------------------------------------------------------- /src/UnityPackage/Assets/link.xml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/UnityPackage/Assets/link.xml.meta -------------------------------------------------------------------------------- /src/UnityPackage/JsonNet-Lite.unitypackage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/UnityPackage/JsonNet-Lite.unitypackage.json -------------------------------------------------------------------------------- /src/UnityPackage/JsonNet.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/UnityPackage/JsonNet.base.json -------------------------------------------------------------------------------- /src/UnityPackage/JsonNet.unitypackage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/UnityPackage/JsonNet.unitypackage.json -------------------------------------------------------------------------------- /src/UnityPackage/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/UnityPackage/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /src/UnityPackage/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/UnityPackage/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /src/UnityPackage/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/UnityPackage/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /src/UnityPackage/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/UnityPackage/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /src/UnityPackage/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/UnityPackage/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /src/UnityPackage/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/UnityPackage/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /src/UnityPackage/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/UnityPackage/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /src/UnityPackage/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/UnityPackage/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /src/UnityPackage/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/UnityPackage/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /src/UnityPackage/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/UnityPackage/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /src/UnityPackage/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/UnityPackage/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /src/UnityPackage/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/UnityPackage/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /src/UnityPackage/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/UnityPackage/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /src/UnityPackage/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/UnityPackage/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /src/UnityPackage/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/UnityPackage/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /src/UnityPackage/ProjectSettings/UnityAdsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/UnityPackage/ProjectSettings/UnityAdsSettings.asset -------------------------------------------------------------------------------- /src/UnityPackage/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/src/UnityPackage/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /tools/nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/tools/nuget/NuGet.Config -------------------------------------------------------------------------------- /tools/nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/tools/nuget/NuGet.targets -------------------------------------------------------------------------------- /tools/nuget/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/tools/nuget/nuget.exe -------------------------------------------------------------------------------- /tools/nuget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/tools/nuget/packages.config -------------------------------------------------------------------------------- /tools/unity3d/pdb2mdb.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SaladLab/Json.Net.Unity3D/HEAD/tools/unity3d/pdb2mdb.exe --------------------------------------------------------------------------------