├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── NewtonsoftJSON ├── Bin │ ├── net20 │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.pdb │ │ └── Newtonsoft.Json.xml │ ├── net35 │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.pdb │ │ └── Newtonsoft.Json.xml │ ├── net40 │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.pdb │ │ └── Newtonsoft.Json.xml │ ├── net45 │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.pdb │ │ └── Newtonsoft.Json.xml │ ├── netstandard1.0 │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.pdb │ │ └── Newtonsoft.Json.xml │ ├── netstandard1.3 │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.pdb │ │ └── Newtonsoft.Json.xml │ ├── netstandard2.0 │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.pdb │ │ └── Newtonsoft.Json.xml │ ├── portable-net40+win8+wpa81+wp8+sl5 │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.pdb │ │ └── Newtonsoft.Json.xml │ └── portable-net45+win8+wpa81+wp8 │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.pdb │ │ └── Newtonsoft.Json.xml ├── Source │ ├── Build │ │ ├── Sign-Package.ps1 │ │ ├── appsettings.json │ │ ├── build.ps1 │ │ ├── localbuild.ps1 │ │ ├── psake.psm1 │ │ ├── runbuild.cmd │ │ ├── runbuild.ps1 │ │ └── version.json │ ├── Doc │ │ ├── ConditionalProperties.aml │ │ ├── ContractResolver.aml │ │ ├── ConvertingJSONandXML.aml │ │ ├── CreatingLINQtoJSON.aml │ │ ├── CustomCreationConverter.aml │ │ ├── DatesInJSON.aml │ │ ├── Introduction.aml │ │ ├── JsonNetVsDotNetSerializers.aml │ │ ├── JsonSchema.aml │ │ ├── LINQtoJSON.aml │ │ ├── ParsingLINQtoJSON.aml │ │ ├── Performance.aml │ │ ├── PreserveObjectReferences.aml │ │ ├── QueryingLINQtoJSON.aml │ │ ├── ReadingWritingJSON.aml │ │ ├── ReducingSerializedJSONSize.aml │ │ ├── Samples │ │ │ ├── Bson │ │ │ │ ├── DeserializeFromBson.aml │ │ │ │ ├── DeserializeFromBsonCollection.aml │ │ │ │ └── SerializeToBson.aml │ │ │ ├── Json │ │ │ │ ├── CustomJsonReader.aml │ │ │ │ ├── CustomJsonWriter.aml │ │ │ │ ├── ReadJsonWithJsonTextReader.aml │ │ │ │ ├── ReadMultipleContentWithJsonReader.aml │ │ │ │ └── WriteJsonWithJsonTextWriter.aml │ │ │ ├── JsonPath │ │ │ │ ├── ErrorWhenNoMatchQuery.aml │ │ │ │ ├── QueryJsonSelectToken.aml │ │ │ │ ├── QueryJsonSelectTokenEscaped.aml │ │ │ │ ├── QueryJsonSelectTokenJsonPath.aml │ │ │ │ ├── QueryJsonSelectTokenWithLinq.aml │ │ │ │ ├── RegexQuery.aml │ │ │ │ └── StrictEqualsQuery.aml │ │ │ ├── Linq │ │ │ │ ├── Clone.aml │ │ │ │ ├── CreateJsonAnonymousObject.aml │ │ │ │ ├── CreateJsonCollectionInitializer.aml │ │ │ │ ├── CreateJsonDeclaratively.aml │ │ │ │ ├── CreateJsonDynamic.aml │ │ │ │ ├── CreateJsonJTokenWriter.aml │ │ │ │ ├── CreateJsonManually.aml │ │ │ │ ├── CreateReader.aml │ │ │ │ ├── CreateWriter.aml │ │ │ │ ├── DeepEquals.aml │ │ │ │ ├── DeserializeWithLinq.aml │ │ │ │ ├── FromObject.aml │ │ │ │ ├── JObjectProperties.aml │ │ │ │ ├── JTokenAnnotation.aml │ │ │ │ ├── JValueCast.aml │ │ │ │ ├── JValueValue.aml │ │ │ │ ├── MergeJson.aml │ │ │ │ ├── ModifyJson.aml │ │ │ │ ├── ParseJsonAny.aml │ │ │ │ ├── ParseJsonArray.aml │ │ │ │ ├── ParseJsonObject.aml │ │ │ │ ├── QueryJson.aml │ │ │ │ ├── QueryJsonDynamic.aml │ │ │ │ ├── QueryJsonLinq.aml │ │ │ │ ├── ReadJTokenFromBson.aml │ │ │ │ ├── ReadJson.aml │ │ │ │ ├── SerializeWithLinq.aml │ │ │ │ ├── ToObjectComplex.aml │ │ │ │ ├── ToObjectGeneric.aml │ │ │ │ ├── ToObjectType.aml │ │ │ │ ├── ToString.aml │ │ │ │ ├── ToStringJsonConverter.aml │ │ │ │ ├── WriteJTokenToBson.aml │ │ │ │ └── WriteToJsonFile.aml │ │ │ ├── Samples.aml │ │ │ ├── Schema │ │ │ │ ├── CreateJsonSchemaManually.aml │ │ │ │ ├── JTokenIsValid.aml │ │ │ │ ├── JTokenIsValidWithMessages.aml │ │ │ │ ├── JTokenValidateWithEvent.aml │ │ │ │ ├── JsonSchemaParse.aml │ │ │ │ ├── JsonValidatingReaderAndSerializer.aml │ │ │ │ ├── LoadJsonSchemaFromFile.aml │ │ │ │ ├── RefJsonSchemaResolver.aml │ │ │ │ └── SaveJsonSchemaToFile.aml │ │ │ ├── Serializer │ │ │ │ ├── CustomContractResolver.aml │ │ │ │ ├── CustomJsonConverter.aml │ │ │ │ ├── CustomJsonConverterGeneric.aml │ │ │ │ ├── CustomTraceWriter.aml │ │ │ │ ├── DataContractAndDataMember.aml │ │ │ │ ├── DefaultSettings.aml │ │ │ │ ├── DefaultValueAttributeIgnore.aml │ │ │ │ ├── DefaultValueHandlingIgnore.aml │ │ │ │ ├── DeserializeAnonymousType.aml │ │ │ │ ├── DeserializeCollection.aml │ │ │ │ ├── DeserializeConstructorHandling.aml │ │ │ │ ├── DeserializeCustomCreationConverter.aml │ │ │ │ ├── DeserializeDataSet.aml │ │ │ │ ├── DeserializeDateFormatString.aml │ │ │ │ ├── DeserializeDictionary.aml │ │ │ │ ├── DeserializeExtensionData.aml │ │ │ │ ├── DeserializeImmutableCollections.aml │ │ │ │ ├── DeserializeMetadataPropertyHandling.aml │ │ │ │ ├── DeserializeMissingMemberHandling.aml │ │ │ │ ├── DeserializeObject.aml │ │ │ │ ├── DeserializeObjectCreationHandling.aml │ │ │ │ ├── DeserializeWithDependencyInjection.aml │ │ │ │ ├── DeserializeWithJsonSerializerFromFile.aml │ │ │ │ ├── ErrorHandlingAttribute.aml │ │ │ │ ├── ErrorHandlingEvent.aml │ │ │ │ ├── JsonConstructorAttribute.aml │ │ │ │ ├── JsonConverterAttributeClass.aml │ │ │ │ ├── JsonConverterAttributeProperty.aml │ │ │ │ ├── JsonObjectAttributeOptIn.aml │ │ │ │ ├── JsonObjectAttributeOverrideIEnumerable.aml │ │ │ │ ├── JsonPropertyItemLevelSetting.aml │ │ │ │ ├── JsonPropertyName.aml │ │ │ │ ├── JsonPropertyOrder.aml │ │ │ │ ├── JsonPropertyPropertyLevelSetting.aml │ │ │ │ ├── JsonPropertyRequired.aml │ │ │ │ ├── MaxDepth.aml │ │ │ │ ├── NamingStrategyAttributes.aml │ │ │ │ ├── NamingStrategyCamelCase.aml │ │ │ │ ├── NamingStrategySkipDictionaryKeys.aml │ │ │ │ ├── NamingStrategySkipSpecifiedNames.aml │ │ │ │ ├── NamingStrategySnakeCase.aml │ │ │ │ ├── NullValueHandlingIgnore.aml │ │ │ │ ├── PopulateObject.aml │ │ │ │ ├── PreserveReferencesHandlingObject.aml │ │ │ │ ├── PropertyJsonIgnore.aml │ │ │ │ ├── ReferenceLoopHandlingIgnore.aml │ │ │ │ ├── SerializationCallbackAttributes.aml │ │ │ │ ├── SerializeCollection.aml │ │ │ │ ├── SerializeConditionalProperty.aml │ │ │ │ ├── SerializeContractResolver.aml │ │ │ │ ├── SerializeDataSet.aml │ │ │ │ ├── SerializeDateFormatHandling.aml │ │ │ │ ├── SerializeDateFormatString.aml │ │ │ │ ├── SerializeDateTimeZoneHandling.aml │ │ │ │ ├── SerializeDictionary.aml │ │ │ │ ├── SerializeExtensionData.aml │ │ │ │ ├── SerializeImmutableCollections.aml │ │ │ │ ├── SerializeObject.aml │ │ │ │ ├── SerializeRawJson.aml │ │ │ │ ├── SerializeSerializationBinder.aml │ │ │ │ ├── SerializeTypeNameHandling.aml │ │ │ │ ├── SerializeUnindentedJson.aml │ │ │ │ ├── SerializeWithJsonConverters.aml │ │ │ │ ├── SerializeWithJsonSerializerToFile.aml │ │ │ │ └── TraceWriter.aml │ │ │ └── Xml │ │ │ │ ├── ConvertJsonToXml.aml │ │ │ │ ├── ConvertXmlToJson.aml │ │ │ │ └── ConvertXmlToJsonForceArray.aml │ │ ├── SelectToken.aml │ │ ├── SerializationAttributes.aml │ │ ├── SerializationCallbacks.aml │ │ ├── SerializationErrorHandling.aml │ │ ├── SerializationGuide.aml │ │ ├── SerializationSettings.aml │ │ ├── SerializationTracing.aml │ │ ├── SerializingCollections.aml │ │ ├── SerializingJSON.aml │ │ ├── SerializingJSONFragments.aml │ │ ├── cross.png │ │ ├── doc.content │ │ ├── doc.shfbproj │ │ ├── icons │ │ │ ├── favicon.ico │ │ │ └── logo.jpg │ │ ├── license.txt │ │ ├── performance.png │ │ ├── readme.txt │ │ └── tick.png │ └── Src │ │ ├── Directory.Build.props │ │ ├── Newtonsoft.Json.TestConsole │ │ ├── App.config │ │ ├── Newtonsoft.Json.TestConsole.csproj │ │ └── Program.cs │ │ ├── Newtonsoft.Json.Tests │ │ ├── App.config │ │ ├── Benchmarks │ │ │ ├── BenchmarkConstants.cs │ │ │ ├── DeserializeBenchmarks.cs │ │ │ ├── DeserializeComparisonBenchmarks.cs │ │ │ ├── JTokenBenchmarks.cs │ │ │ ├── JValueConvertBenchmarks.cs │ │ │ ├── JsonTextReaderBenchmarks.cs │ │ │ ├── JsonTextWriterBenchmarks.cs │ │ │ ├── LargeJArrayBenchmarks.cs │ │ │ ├── LowLevelBenchmarks.cs │ │ │ ├── Runner.cs │ │ │ ├── SerializeBenchmarks.cs │ │ │ ├── SerializeComparisonBenchmarks.cs │ │ │ └── XmlNodeConverterBenchmarks.cs │ │ ├── Bson │ │ │ ├── BsonReaderAsyncTests.cs │ │ │ ├── BsonReaderTests.cs │ │ │ ├── BsonWriterAsyncTests.cs │ │ │ └── BsonWriterTests.cs │ │ ├── Converters │ │ │ ├── BinaryConverterTests.cs │ │ │ ├── CustomCreationConverterTests.cs │ │ │ ├── DataSetConverterTests.cs │ │ │ ├── DataTableConverterTests.cs │ │ │ ├── DiscriminatedUnionConverterTests.cs │ │ │ ├── ExpandoObjectConverterTests.cs │ │ │ ├── GenericJsonConverterTests.cs │ │ │ ├── IsoDateTimeConverterTests.cs │ │ │ ├── JavaScriptDateTimeConverterTests.cs │ │ │ ├── KeyValuePairConverterTests.cs │ │ │ ├── ObjectIdConverterTests.cs │ │ │ ├── RegexConverterTests.cs │ │ │ ├── StringEnumConverterTests.cs │ │ │ ├── UnixDateTimeConverterTests.cs │ │ │ ├── VersionConverterTests.cs │ │ │ └── XmlNodeConverterTest.cs │ │ ├── DemoTests.cs │ │ ├── Documentation │ │ │ ├── ConditionalPropertiesTests.cs │ │ │ ├── ConvertingJsonAndXmlTests.cs │ │ │ ├── JsonSchemaTests.cs │ │ │ ├── LinqToJsonTests.cs │ │ │ ├── PerformanceTests.cs │ │ │ ├── ReadingAndWritingJsonTests.cs │ │ │ ├── Samples │ │ │ │ ├── Bson │ │ │ │ │ ├── DeserializeFromBson.cs │ │ │ │ │ ├── DeserializeFromBsonCollection.cs │ │ │ │ │ └── SerializeToBson.cs │ │ │ │ ├── Json │ │ │ │ │ ├── CustomJsonReader.cs │ │ │ │ │ ├── CustomJsonWriter.cs │ │ │ │ │ ├── ReadJsonWithJsonTextReader.cs │ │ │ │ │ ├── ReadMultipleContentWithJsonReader.cs │ │ │ │ │ └── WriteJsonWithJsonTextWriter.cs │ │ │ │ ├── JsonPath │ │ │ │ │ ├── ErrorWhenNoMatchQuery.cs │ │ │ │ │ ├── QueryJsonSelectToken.cs │ │ │ │ │ ├── QueryJsonSelectTokenEscaped.cs │ │ │ │ │ ├── QueryJsonSelectTokenJsonPath.cs │ │ │ │ │ ├── QueryJsonSelectTokenWithLinq.cs │ │ │ │ │ ├── RegexQuery.cs │ │ │ │ │ └── StrictEqualsQuery.cs │ │ │ │ ├── Linq │ │ │ │ │ ├── Clone.cs │ │ │ │ │ ├── CreateJsonAnonymousObject.cs │ │ │ │ │ ├── CreateJsonCollectionInitializer.cs │ │ │ │ │ ├── CreateJsonDeclaratively.cs │ │ │ │ │ ├── CreateJsonDynamic.cs │ │ │ │ │ ├── CreateJsonJTokenWriter.cs │ │ │ │ │ ├── CreateJsonManually.cs │ │ │ │ │ ├── CreateReader.cs │ │ │ │ │ ├── CreateWriter.cs │ │ │ │ │ ├── DeepEquals.cs │ │ │ │ │ ├── DeserializeWithLinq.cs │ │ │ │ │ ├── FromObject.cs │ │ │ │ │ ├── JObjectProperties.cs │ │ │ │ │ ├── JTokenAnnotation.cs │ │ │ │ │ ├── JValueCast.cs │ │ │ │ │ ├── JValueValue.cs │ │ │ │ │ ├── MergeJson.cs │ │ │ │ │ ├── ModifyJson.cs │ │ │ │ │ ├── ParseJsonAny.cs │ │ │ │ │ ├── ParseJsonArray.cs │ │ │ │ │ ├── ParseJsonObject.cs │ │ │ │ │ ├── QueryJson.cs │ │ │ │ │ ├── QueryJsonDynamic.cs │ │ │ │ │ ├── QueryJsonIgnoreCase.cs │ │ │ │ │ ├── QueryJsonLinq.cs │ │ │ │ │ ├── ReadJTokenFromBson.cs │ │ │ │ │ ├── ReadJson.cs │ │ │ │ │ ├── SerializeWithLinq.cs │ │ │ │ │ ├── ToObjectComplex.cs │ │ │ │ │ ├── ToObjectGeneric.cs │ │ │ │ │ ├── ToObjectType.cs │ │ │ │ │ ├── ToString.cs │ │ │ │ │ ├── ToStringJsonConverter.cs │ │ │ │ │ ├── WriteJTokenToBson.cs │ │ │ │ │ └── WriteToJsonFile.cs │ │ │ │ ├── Schema │ │ │ │ │ ├── CreateJsonSchemaManually.cs │ │ │ │ │ ├── JTokenIsValid.cs │ │ │ │ │ ├── JTokenIsValidWithMessages.cs │ │ │ │ │ ├── JTokenValidateWithEvent.cs │ │ │ │ │ ├── JsonSchemaParse.cs │ │ │ │ │ ├── JsonValidatingReaderAndSerializer.cs │ │ │ │ │ ├── LoadJsonSchemaFromFile.cs │ │ │ │ │ ├── RefJsonSchemaResolver.cs │ │ │ │ │ └── SaveJsonSchemaToFile.cs │ │ │ │ ├── Serializer │ │ │ │ │ ├── CustomContractResolver.cs │ │ │ │ │ ├── CustomJsonConverter.cs │ │ │ │ │ ├── CustomJsonConverterGeneric.cs │ │ │ │ │ ├── CustomTraceWriter.cs │ │ │ │ │ ├── DataContractAndDataMember.cs │ │ │ │ │ ├── DefaultSettings.cs │ │ │ │ │ ├── DefaultValueAttributeIgnore.cs │ │ │ │ │ ├── DefaultValueHandlingIgnore.cs │ │ │ │ │ ├── DeserializeAnonymousType.cs │ │ │ │ │ ├── DeserializeCollection.cs │ │ │ │ │ ├── DeserializeConstructorHandling.cs │ │ │ │ │ ├── DeserializeCustomCreationConverter.cs │ │ │ │ │ ├── DeserializeDataSet.cs │ │ │ │ │ ├── DeserializeDateFormatString.cs │ │ │ │ │ ├── DeserializeDictionary.cs │ │ │ │ │ ├── DeserializeExtensionData.cs │ │ │ │ │ ├── DeserializeImmutableCollections.cs │ │ │ │ │ ├── DeserializeMetadataPropertyHandling.cs │ │ │ │ │ ├── DeserializeMissingMemberHandling.cs │ │ │ │ │ ├── DeserializeObject.cs │ │ │ │ │ ├── DeserializeObjectCreationHandling.cs │ │ │ │ │ ├── DeserializeWithDependencyInjection.cs │ │ │ │ │ ├── DeserializeWithJsonSerializerFromFile.cs │ │ │ │ │ ├── ErrorHandlingAttribute.cs │ │ │ │ │ ├── ErrorHandlingEvent.cs │ │ │ │ │ ├── JsonConstructorAttribute.cs │ │ │ │ │ ├── JsonConverterAttributeClass.cs │ │ │ │ │ ├── JsonConverterAttributeProperty.cs │ │ │ │ │ ├── JsonObjectAttributeOptIn.cs │ │ │ │ │ ├── JsonObjectAttributeOverrideIEnumerable.cs │ │ │ │ │ ├── JsonPropertyItemLevelSetting.cs │ │ │ │ │ ├── JsonPropertyName.cs │ │ │ │ │ ├── JsonPropertyOrder.cs │ │ │ │ │ ├── JsonPropertyPropertyLevelSetting.cs │ │ │ │ │ ├── JsonPropertyRequired.cs │ │ │ │ │ ├── MaxDepth.cs │ │ │ │ │ ├── NamingStrategyAttributes.cs │ │ │ │ │ ├── NamingStrategyCamelCase.cs │ │ │ │ │ ├── NamingStrategyKebabCase.cs │ │ │ │ │ ├── NamingStrategySkipDictionaryKeys.cs │ │ │ │ │ ├── NamingStrategySkipSpecifiedNames.cs │ │ │ │ │ ├── NamingStrategySnakeCase.cs │ │ │ │ │ ├── NullValueHandlingIgnore.cs │ │ │ │ │ ├── PopulateObject.cs │ │ │ │ │ ├── PreserveReferencesHandlingObject.cs │ │ │ │ │ ├── PropertyJsonIgnore.cs │ │ │ │ │ ├── ReferenceLoopHandlingIgnore.cs │ │ │ │ │ ├── SerializationCallbackAttributes.cs │ │ │ │ │ ├── SerializeCollection.cs │ │ │ │ │ ├── SerializeConditionalProperty.cs │ │ │ │ │ ├── SerializeContractResolver.cs │ │ │ │ │ ├── SerializeDataSet.cs │ │ │ │ │ ├── SerializeDateFormatHandling.cs │ │ │ │ │ ├── SerializeDateFormatString.cs │ │ │ │ │ ├── SerializeDateTimeZoneHandling.cs │ │ │ │ │ ├── SerializeDictionary.cs │ │ │ │ │ ├── SerializeExtensionData.cs │ │ │ │ │ ├── SerializeImmutableCollections.cs │ │ │ │ │ ├── SerializeObject.cs │ │ │ │ │ ├── SerializeRawJson.cs │ │ │ │ │ ├── SerializeSerializationBinder.cs │ │ │ │ │ ├── SerializeTypeNameHandling.cs │ │ │ │ │ ├── SerializeUnindentedJson.cs │ │ │ │ │ ├── SerializeWithJsonConverters.cs │ │ │ │ │ ├── SerializeWithJsonSerializerToFile.cs │ │ │ │ │ └── TraceWriter.cs │ │ │ │ └── Xml │ │ │ │ │ ├── ConvertJsonToXml.cs │ │ │ │ │ ├── ConvertXmlToJson.cs │ │ │ │ │ └── ConvertXmlToJsonForceArray.cs │ │ │ ├── SerializationTests.cs │ │ │ └── TraceWriterTests.cs │ │ ├── ExceptionTests.cs │ │ ├── FileSystemEntityModel.Designer.cs │ │ ├── FileSystemEntityModel.edmx │ │ ├── Issues │ │ │ ├── Issue0198.cs │ │ │ ├── Issue0573.cs │ │ │ ├── Issue1307.cs │ │ │ ├── Issue1321.cs │ │ │ ├── Issue1322.cs │ │ │ ├── Issue1327.cs │ │ │ ├── Issue1351.cs │ │ │ ├── Issue1353.cs │ │ │ ├── Issue1362.cs │ │ │ ├── Issue1396.cs │ │ │ ├── Issue1404.cs │ │ │ ├── Issue1445.cs │ │ │ ├── Issue1460.cs │ │ │ ├── Issue1461.cs │ │ │ ├── Issue1512.cs │ │ │ ├── Issue1541.cs │ │ │ ├── Issue1545.cs │ │ │ ├── Issue1552.cs │ │ │ ├── Issue1561.cs │ │ │ ├── Issue1566.cs │ │ │ ├── Issue1569.cs │ │ │ ├── Issue1574.cs │ │ │ ├── Issue1576.cs │ │ │ ├── Issue1592.cs │ │ │ ├── Issue1593.cs │ │ │ ├── Issue1597.cs │ │ │ ├── Issue1598.cs │ │ │ ├── Issue1619.cs │ │ │ ├── Issue1620.cs │ │ │ ├── Issue1642.cs │ │ │ ├── Issue1682.cs │ │ │ ├── Issue1708.cs │ │ │ ├── Issue1711.cs │ │ │ ├── Issue1719.cs │ │ │ ├── Issue1725.cs │ │ │ ├── Issue1734.cs │ │ │ ├── Issue1752.cs │ │ │ ├── Issue1757.cs │ │ │ ├── Issue1778.cs │ │ │ ├── Issue1796.cs │ │ │ ├── Issue1798.cs │ │ │ ├── Issue1834.cs │ │ │ ├── Issue1837.cs │ │ │ ├── Issue1874.cs │ │ │ ├── Issue1877.cs │ │ │ ├── Issue1962.cs │ │ │ ├── Issue1984.cs │ │ │ ├── Issue2082.cs │ │ │ ├── Issue2156.cs │ │ │ ├── Issue2165.cs │ │ │ └── Issue2176.cs │ │ ├── JsonArrayAttributeTests.cs │ │ ├── JsonConvertTest.cs │ │ ├── JsonTextReaderTests │ │ │ ├── ExceptionHandlingAsyncTests.cs │ │ │ ├── ExceptionHandlingTests.cs │ │ │ ├── FloatAsyncTests.cs │ │ │ ├── FloatTests.cs │ │ │ ├── MiscAsyncTests.cs │ │ │ ├── MiscTests.cs │ │ │ ├── ParseAsyncTests.cs │ │ │ ├── ParseTests.cs │ │ │ ├── ReadAsyncTests.cs │ │ │ └── ReadTests.cs │ │ ├── JsonTextWriterAsyncTests.cs │ │ ├── JsonTextWriterTest.cs │ │ ├── JsonValidatingReaderTests.cs │ │ ├── Linq │ │ │ ├── AnnotationsTests.cs │ │ │ ├── ComponentModel │ │ │ │ ├── BindingTests.cs │ │ │ │ └── JPropertyDescriptorTests.cs │ │ │ ├── DynamicTests.cs │ │ │ ├── JArrayTests.cs │ │ │ ├── JConstructorAsyncTests.cs │ │ │ ├── JConstructorTests.cs │ │ │ ├── JObjectAsyncTests.cs │ │ │ ├── JObjectTests.cs │ │ │ ├── JPropertyAsyncTests.cs │ │ │ ├── JPropertyTests.cs │ │ │ ├── JRawTests.cs │ │ │ ├── JTokenAsyncTests.cs │ │ │ ├── JTokenEqualityComparerTests.cs │ │ │ ├── JTokenReaderAsyncTests.cs │ │ │ ├── JTokenReaderTest.cs │ │ │ ├── JTokenTests.cs │ │ │ ├── JTokenWriterAsyncTests.cs │ │ │ ├── JTokenWriterTest.cs │ │ │ ├── JValueAsyncTests.cs │ │ │ ├── JValueTests.cs │ │ │ ├── JsonPath │ │ │ │ ├── JPathExecuteTests.cs │ │ │ │ ├── JPathParseTests.cs │ │ │ │ └── QueryExpressionTests.cs │ │ │ ├── LinqToJsonAsyncTests.cs │ │ │ ├── LinqToJsonTest.cs │ │ │ └── MergeTests.cs │ │ ├── LinqToSql │ │ │ ├── Department.cs │ │ │ ├── DepartmentConverter.cs │ │ │ ├── GuidByteArrayConverter.cs │ │ │ ├── LinqToSqlClasses.dbml │ │ │ ├── LinqToSqlClasses.dbml.layout │ │ │ ├── LinqToSqlClasses.designer.cs │ │ │ ├── LinqToSqlClassesSerializationTests.cs │ │ │ ├── Person.cs │ │ │ └── Role.cs │ │ ├── Newtonsoft.Json.Tests.csproj │ │ ├── PoisonText.txt │ │ ├── Schema │ │ │ ├── ExtensionsTests.cs │ │ │ ├── JsonSchemaBuilderTests.cs │ │ │ ├── JsonSchemaGeneratorTests.cs │ │ │ ├── JsonSchemaModelBuilderTests.cs │ │ │ ├── JsonSchemaNodeTests.cs │ │ │ ├── JsonSchemaSpecTests.cs │ │ │ ├── JsonSchemaTests.cs │ │ │ ├── PerformanceTests.cs │ │ │ └── Specs │ │ │ │ ├── additionalItems.json │ │ │ │ ├── additionalProperties.json │ │ │ │ ├── dependencies.json │ │ │ │ ├── disallow.json │ │ │ │ ├── divisibleBy.json │ │ │ │ ├── enum.json │ │ │ │ ├── extends.json │ │ │ │ ├── items.json │ │ │ │ ├── maxItems.json │ │ │ │ ├── maxLength.json │ │ │ │ ├── maximum.json │ │ │ │ ├── minItems.json │ │ │ │ ├── minLength.json │ │ │ │ ├── minimum.json │ │ │ │ ├── pattern.json │ │ │ │ ├── patternProperties.json │ │ │ │ ├── properties.json │ │ │ │ ├── ref.json │ │ │ │ ├── required.json │ │ │ │ ├── type.json │ │ │ │ └── uniqueItems.json │ │ ├── Serialization │ │ │ ├── CamelCaseNamingStrategyTests.cs │ │ │ ├── CamelCasePropertyNamesContractResolverTests.cs │ │ │ ├── ConstructorHandlingTests.cs │ │ │ ├── ContractResolverTests.cs │ │ │ ├── DateTimeZoneHandlingTests.cs │ │ │ ├── DefaultValueHandlingTests.cs │ │ │ ├── DependencyInjectionTests.cs │ │ │ ├── DynamicConcreteTests.cs │ │ │ ├── DynamicTests.cs │ │ │ ├── EntitiesSerializationTests.cs │ │ │ ├── ExtensionDataTests.cs │ │ │ ├── FSharpTests.cs │ │ │ ├── ImmutableCollectionsTests.cs │ │ │ ├── JsonPropertyCollectionTests.cs │ │ │ ├── JsonSerializerCollectionsTests.cs │ │ │ ├── JsonSerializerTest.cs │ │ │ ├── KebabCaseNamingStrategyTests.cs │ │ │ ├── MetadataPropertyHandlingTests.cs │ │ │ ├── MissingMemberHandlingTests.cs │ │ │ ├── NamingStrategyEquality.cs │ │ │ ├── NullValueHandlingTests.cs │ │ │ ├── PopulateTests.cs │ │ │ ├── PreserveReferencesHandlingTests.cs │ │ │ ├── ReferenceLoopHandlingTests.cs │ │ │ ├── ReflectionAttributeProviderTests.cs │ │ │ ├── SerializationErrorHandlingTests.cs │ │ │ ├── SerializationEventAttributeTests.cs │ │ │ ├── ShouldSerializeTests.cs │ │ │ ├── SnakeCaseNamingStrategyTests.cs │ │ │ ├── TraceWriterTests.cs │ │ │ ├── TypeNameHandlingTests.cs │ │ │ └── WebApiIntegrationTests.cs │ │ ├── SpaceShipV2.bson │ │ ├── TestFixtureBase.cs │ │ ├── TestObjects │ │ │ ├── A.cs │ │ │ ├── AATestClass.cs │ │ │ ├── Aa.cs │ │ │ ├── AbstractDictionaryTestClass.cs │ │ │ ├── AbstractGenericBase.cs │ │ │ ├── AbstractImplementationDictionaryTestClass.cs │ │ │ ├── AbstractImplementationListTestClass.cs │ │ │ ├── AbstractImplementationTestClass.cs │ │ │ ├── AbstractListTestClass.cs │ │ │ ├── AbstractTestClass.cs │ │ │ ├── Address.cs │ │ │ ├── Animal.cs │ │ │ ├── AnswerFilterModel.cs │ │ │ ├── Antworten.cs │ │ │ ├── ArgumentConverterPrecedenceClassConverter.cs │ │ │ ├── Article.cs │ │ │ ├── ArticleCollection.cs │ │ │ ├── AttachmentReadConverter.cs │ │ │ ├── B.cs │ │ │ ├── BBTestClass.cs │ │ │ ├── BadJsonPropertyClass.cs │ │ │ ├── Bar.cs │ │ │ ├── Bar1.cs │ │ │ ├── BaseClass.cs │ │ │ ├── BaseClassVirtual.cs │ │ │ ├── BaseClassWithProtectedVirtual.cs │ │ │ ├── BaseConstructorType.cs │ │ │ ├── BaseDataContract.cs │ │ │ ├── BaseDataContractWithHidden.cs │ │ │ ├── BaseType.cs │ │ │ ├── BaseWithContract.cs │ │ │ ├── BaseWithPrivate.cs │ │ │ ├── BaseWithoutContract.cs │ │ │ ├── Bb.cs │ │ │ ├── Binding.cs │ │ │ ├── Binding_DisallowNull.cs │ │ │ ├── BusRun.cs │ │ │ ├── ByteArrayTestClass.cs │ │ │ ├── Car.cs │ │ │ ├── ChildClass.cs │ │ │ ├── ChildClassVirtual.cs │ │ │ ├── ChildClassWithProtectedOverridePlusJsonProperty.cs │ │ │ ├── ChildDataContractWithHidden.cs │ │ │ ├── CircularConstructor1.cs │ │ │ ├── CircularConstructor2.cs │ │ │ ├── CircularReferenceClass.cs │ │ │ ├── CircularReferenceWithIdClass.cs │ │ │ ├── ClassAndMemberConverterClass.cs │ │ │ ├── ClassAttributeBase.cs │ │ │ ├── ClassAttributeDerived.cs │ │ │ ├── ClassConverterPrecedenceClassConverter.cs │ │ │ ├── ClassWithArray.cs │ │ │ ├── ClassWithException.cs │ │ │ ├── ClassWithGuid.cs │ │ │ ├── ClassWithImplicitOperator.cs │ │ │ ├── ClassWithTimeSpan.cs │ │ │ ├── ClientMap.cs │ │ │ ├── CollectionClassAttributeDerived.cs │ │ │ ├── CommentTestClass.cs │ │ │ ├── CommentTestObject.cs │ │ │ ├── CompletionDataRequest.cs │ │ │ ├── ComplexItem.cs │ │ │ ├── Component.cs │ │ │ ├── Computer.cs │ │ │ ├── ConsoleWriter.cs │ │ │ ├── ConstantTestClass.cs │ │ │ ├── ConstructorAndDefaultValueAttributeTestClass.cs │ │ │ ├── ConstructorAndRequiredTestClass.cs │ │ │ ├── ConstructorCaseSensitivityClass.cs │ │ │ ├── ConstructorCompexIgnoredProperty.cs │ │ │ ├── ConstructorReadonlyFields.cs │ │ │ ├── Container.cs │ │ │ ├── Content.cs │ │ │ ├── ContentBaseClass.cs │ │ │ ├── ContentSubClass.cs │ │ │ ├── ConverableMembers.cs │ │ │ ├── ConvertableIntTestClass.cs │ │ │ ├── ConverterPrecedenceClass.cs │ │ │ ├── ConverterPrecedenceClassConverter.cs │ │ │ ├── ConvertibleId.cs │ │ │ ├── ConvertibleInt.cs │ │ │ ├── CustomerDataSet.cs │ │ │ ├── CustomerWithMetadataType.cs │ │ │ ├── DTOWithParameterisedConstructor.cs │ │ │ ├── DTOWithoutParameterisedConstructor.cs │ │ │ ├── DataContractJsonSerializerTestClass.cs │ │ │ ├── DataContractPrivateMembers.cs │ │ │ ├── DataContractSerializationAttributesClass.cs │ │ │ ├── DateTimeErrorObjectCollection.cs │ │ │ ├── DateTimeOffsetTestClass.cs │ │ │ ├── DateTimeOffsetWrapper.cs │ │ │ ├── DateTimeTestClass.cs │ │ │ ├── DateTimeWrapper.cs │ │ │ ├── DecimalTest.cs │ │ │ ├── DecimalTestClass.cs │ │ │ ├── DefaultValueAttributeTestClass.cs │ │ │ ├── DerivedConstructorType.cs │ │ │ ├── DerivedEvent.cs │ │ │ ├── DerivedSerializationEventTestObject.cs │ │ │ ├── DerivedType.cs │ │ │ ├── DerivedWithPrivate.cs │ │ │ ├── DeserializeStringConvert.cs │ │ │ ├── DictionaryInterfaceClass.cs │ │ │ ├── DictionaryKey.cs │ │ │ ├── DictionaryKeyCast.cs │ │ │ ├── DictionaryKeyContractResolver.cs │ │ │ ├── DictionaryWithNoDefaultConstructor.cs │ │ │ ├── DictionaryWithNoNull.cs │ │ │ ├── DirectoryAccount.cs │ │ │ ├── DoubleClass.cs │ │ │ ├── EmployeeReference.cs │ │ │ ├── EmptyJsonValueTestClass.cs │ │ │ ├── EncodingReadConverter.cs │ │ │ ├── EnumA.cs │ │ │ ├── EnumerableArrayPropertyClass.cs │ │ │ ├── EnumerableClass.cs │ │ │ ├── ErroringClass.cs │ │ │ ├── ErroringJsonConverter.cs │ │ │ ├── ErroringTestClass.cs │ │ │ ├── Events │ │ │ │ ├── Event.cs │ │ │ │ ├── Event1.cs │ │ │ │ └── EventType.cs │ │ │ ├── ExistingValueClass.cs │ │ │ ├── FaqItem.cs │ │ │ ├── Foo.cs │ │ │ ├── Foo1.cs │ │ │ ├── Foo64.cs │ │ │ ├── FooBar1.cs │ │ │ ├── FooConstructor.cs │ │ │ ├── FooRequired.cs │ │ │ ├── Friend.cs │ │ │ ├── GameObject.cs │ │ │ ├── GenericIEnumerableWithImplicitConversion.cs │ │ │ ├── GenericImpl.cs │ │ │ ├── GenericListAndDictionaryInterfaceProperties.cs │ │ │ ├── GeoCoding │ │ │ │ ├── AddressDetails.cs │ │ │ │ ├── AdministrativeArea.cs │ │ │ │ ├── Country.cs │ │ │ │ ├── GoogleMapGeocoderStructure.cs │ │ │ │ ├── Locality.cs │ │ │ │ ├── Placemark.cs │ │ │ │ ├── Point.cs │ │ │ │ ├── PostalCode.cs │ │ │ │ ├── Status.cs │ │ │ │ ├── SubAdministrativeArea.cs │ │ │ │ └── Thoroughfare.cs │ │ │ ├── GeometricForms │ │ │ │ ├── Shape.cs │ │ │ │ └── Tags.cs │ │ │ ├── GetOnlyPropertyClass.cs │ │ │ ├── HasByteArray.cs │ │ │ ├── HolderClass.cs │ │ │ ├── Human.cs │ │ │ ├── IInterfaceObject.cs │ │ │ ├── IKeyValueId.cs │ │ │ ├── IMainClass.cs │ │ │ ├── IMyInterface.cs │ │ │ ├── IPrivateImplementationA.cs │ │ │ ├── IPrivateImplementationB.cs │ │ │ ├── IPrivateOverriddenImplementation.cs │ │ │ ├── ISerializableTestObject.cs │ │ │ ├── ISerializableWithoutAttributeTestObject.cs │ │ │ ├── ISubclass.cs │ │ │ ├── ISubclassBase.cs │ │ │ ├── IdReferenceResolver.cs │ │ │ ├── IgnoreDataMemberTestClass.cs │ │ │ ├── IgnoredPropertiesContractResolver.cs │ │ │ ├── IgnoredPropertiesTestClass.cs │ │ │ ├── IgnoredProperty.cs │ │ │ ├── ImmutableStruct.cs │ │ │ ├── ImplementInterfaceObject.cs │ │ │ ├── IncompatibleJsonAttributeClass.cs │ │ │ ├── IncompleteTestClass.cs │ │ │ ├── IntToFloatConverter.cs │ │ │ ├── InterfacePropertyTestClass.cs │ │ │ ├── Invoice.cs │ │ │ ├── Item.cs │ │ │ ├── ItemBase.cs │ │ │ ├── ItemConverterTestClass.cs │ │ │ ├── ItemConverterTestConverter.cs │ │ │ ├── JRawValueTestObject.cs │ │ │ ├── JTokenTestClass.cs │ │ │ ├── JaggedArray.cs │ │ │ ├── JsonIgnoreAttributeOnClassTestClass.cs │ │ │ ├── JsonIgnoreAttributeTestClass.cs │ │ │ ├── JsonPropertyClass.cs │ │ │ ├── JsonPropertyConverterContractResolver.cs │ │ │ ├── JsonPropertyConverterTestClass.cs │ │ │ ├── JsonPropertyWithHandlingValues.cs │ │ │ ├── JsonReaderStubWithIsClosed.cs │ │ │ ├── JsonTextReaderTests │ │ │ │ ├── FakeArrayPool.cs │ │ │ │ ├── SlowStream.cs │ │ │ │ ├── ToggleReaderError.cs │ │ │ │ └── UnmanagedResourceFakingJsonReader.cs │ │ │ ├── KVPair.cs │ │ │ ├── KeyValueId.cs │ │ │ ├── KeyValueTestClass.cs │ │ │ ├── Link.cs │ │ │ ├── ListErrorObject.cs │ │ │ ├── ListErrorObjectCollection.cs │ │ │ ├── ListOfIds.cs │ │ │ ├── ListSourceTest.cs │ │ │ ├── ListTestClass.cs │ │ │ ├── LogEntry.cs │ │ │ ├── LogEvent.cs │ │ │ ├── MailAddressReadConverter.cs │ │ │ ├── MainClass.cs │ │ │ ├── MemberConverterClass.cs │ │ │ ├── MemberConverterPrecedenceClassConverter.cs │ │ │ ├── MessageWithIsoDate.cs │ │ │ ├── MethodExecutorObject.cs │ │ │ ├── MetroColorConverter.cs │ │ │ ├── MetroPropertyNameResolver.cs │ │ │ ├── MetroStringConverter.cs │ │ │ ├── ModelStateDictionary.cs │ │ │ ├── Money │ │ │ │ ├── Currency.cs │ │ │ │ └── Tags.cs │ │ │ ├── Movie.cs │ │ │ ├── MovieWithJsonObjectNullValueHandlingIgnore.cs │ │ │ ├── MovieWithJsonObjectNullValueHandlingInclude.cs │ │ │ ├── MultiIndexBase.cs │ │ │ ├── MultiIndexSuper.cs │ │ │ ├── MultipleItemsClass.cs │ │ │ ├── MultipleParametrizedConstructorsJsonConstructor.cs │ │ │ ├── MyClass.cs │ │ │ ├── MyEnum.cs │ │ │ ├── MyFactory.cs │ │ │ ├── MyInterfaceConverter.cs │ │ │ ├── MyObservableObject.cs │ │ │ ├── MyTuple.cs │ │ │ ├── MyTuplePartial.cs │ │ │ ├── Name.cs │ │ │ ├── NameContainer.cs │ │ │ ├── NameContainerConverter.cs │ │ │ ├── NoConstructorReadOnlyCollection.cs │ │ │ ├── NoConstructorReadOnlyDictionary.cs │ │ │ ├── NonDefaultConstructorWithReadOnlyCollectionProperty.cs │ │ │ ├── NonDefaultConstructorWithReadOnlyDictionaryProperty.cs │ │ │ ├── NonPublicConstructorWithJsonConstructor.cs │ │ │ ├── NonRequest.cs │ │ │ ├── NullTestClass.cs │ │ │ ├── NullableDateTimeTestClass.cs │ │ │ ├── NullableFloats.cs │ │ │ ├── NullableGuid.cs │ │ │ ├── NullableGuidCountingJsonTextWriter.cs │ │ │ ├── NullableLongTestClass.cs │ │ │ ├── NullableStructPropertyClass.cs │ │ │ ├── NullableTestClass.cs │ │ │ ├── ObjectArrayPropertyTest.cs │ │ │ ├── ObservableObject.cs │ │ │ ├── OptInClass.cs │ │ │ ├── Organization │ │ │ │ ├── Employee.cs │ │ │ │ ├── IPerson.cs │ │ │ │ ├── Manager.cs │ │ │ │ ├── Person.cs │ │ │ │ ├── PersonPropertyClass.cs │ │ │ │ └── WagePerson.cs │ │ │ ├── Pair.cs │ │ │ ├── ParticipantEntity.cs │ │ │ ├── PersonConverter.cs │ │ │ ├── PersonError.cs │ │ │ ├── PersonRaw.cs │ │ │ ├── PersonReference.cs │ │ │ ├── PersonSerializable.cs │ │ │ ├── PersonWithPrivateConstructor.cs │ │ │ ├── PhoneNumber.cs │ │ │ ├── PocoDataContractSerializationAttributesClass.cs │ │ │ ├── Pos.cs │ │ │ ├── PosConverter.cs │ │ │ ├── PosDouble.cs │ │ │ ├── PosDoubleConverter.cs │ │ │ ├── PreserveReferencesCallbackTestObject.cs │ │ │ ├── PrivateConstructorTestClass.cs │ │ │ ├── PrivateConstructorWithPublicParameterizedConstructorTestClass.cs │ │ │ ├── PrivateImplementationAClass.cs │ │ │ ├── PrivateImplementationBClass.cs │ │ │ ├── PrivateMembersClass.cs │ │ │ ├── PrivateMembersClassWithAttributes.cs │ │ │ ├── PrivateSetterBase.cs │ │ │ ├── PrivateSetterDerived.cs │ │ │ ├── Product.cs │ │ │ ├── ProductCollection.cs │ │ │ ├── ProductShort.cs │ │ │ ├── PropertyCase.cs │ │ │ ├── PropertyItemConverter.cs │ │ │ ├── PublicConstructorOverridenByJsonConstructor.cs │ │ │ ├── PublicParameterizedConstructorRequiringConverterTestClass.cs │ │ │ ├── PublicParameterizedConstructorRequiringConverterWithParameterAttributeTestClass.cs │ │ │ ├── PublicParameterizedConstructorRequiringConverterWithPropertyAttributeTestClass.cs │ │ │ ├── PublicParameterizedConstructorTestClass.cs │ │ │ ├── PublicParameterizedConstructorWithNonPropertyParameterTestClass.cs │ │ │ ├── PublicParameterizedConstructorWithPropertyNameConflict.cs │ │ │ ├── PublicParameterizedConstructorWithPropertyNameConflictWithAttribute.cs │ │ │ ├── Ratio.cs │ │ │ ├── ReflectionContractResolver.cs │ │ │ ├── RequestOnly.cs │ │ │ ├── RequiredMembersClass.cs │ │ │ ├── RequiredObject.cs │ │ │ ├── RequiredPropertyConstructorTestClass.cs │ │ │ ├── RequiredPropertyTestClass.cs │ │ │ ├── ResponseWithNewGenericProperty.cs │ │ │ ├── ResponseWithNewGenericPropertyOverride.cs │ │ │ ├── ResponseWithNewGenericPropertyVirtual.cs │ │ │ ├── RoleTransfer.cs │ │ │ ├── RoleTransferDirection.cs │ │ │ ├── RoleTransferOperation.cs │ │ │ ├── RootObject.cs │ │ │ ├── SearchResult.cs │ │ │ ├── SelectListItem.cs │ │ │ ├── SerializableContractResolver.cs │ │ │ ├── SerializationEventTestDictionary.cs │ │ │ ├── SerializationEventTestList.cs │ │ │ ├── SerializationEventTestObject.cs │ │ │ ├── SerializationEventTestObjectWithConstructor.cs │ │ │ ├── SetOnlyPropertyClass.cs │ │ │ ├── SetOnlyPropertyClass2.cs │ │ │ ├── Shortie.cs │ │ │ ├── SimpleResponse.cs │ │ │ ├── SqlTypesDataSet.Designer.cs │ │ │ ├── SqlTypesDataSet.xsc │ │ │ ├── SqlTypesDataSet.xsd │ │ │ ├── SqlTypesDataSet.xss │ │ │ ├── StaticTestClass.cs │ │ │ ├── Store.cs │ │ │ ├── StoreColor.cs │ │ │ ├── StringDictionaryTestClass.cs │ │ │ ├── StructISerializable.cs │ │ │ ├── StructTest.cs │ │ │ ├── StructWithAttribute.cs │ │ │ ├── SubKlass.cs │ │ │ ├── SubWithContractNewProperties.cs │ │ │ ├── SubWithContractVirtualProperties.cs │ │ │ ├── SubWithoutContractNewProperties.cs │ │ │ ├── SubWithoutContractVirtualProperties.cs │ │ │ ├── Subclass.cs │ │ │ ├── SuperKlass.cs │ │ │ ├── Test.cs │ │ │ ├── TestClass.cs │ │ │ ├── TestClassConvertable.cs │ │ │ ├── TestComponent.cs │ │ │ ├── TestComponentSimple.cs │ │ │ ├── TestObject.cs │ │ │ ├── ThisGenericTest.cs │ │ │ ├── TimeZoneOffsetObject.cs │ │ │ ├── TraceWriter.cs │ │ │ ├── TypeClass.cs │ │ │ ├── TypeConverterJsonConverter.cs │ │ │ ├── TypeConverterSize.cs │ │ │ ├── TypeConverterSizeConverter.cs │ │ │ ├── TypedSubHashtable.cs │ │ │ ├── UriGuidTimeSpanTestClass.cs │ │ │ ├── UserNullable.cs │ │ │ ├── Vector.cs │ │ │ ├── VectorParent.cs │ │ │ ├── VersionKeyedCollection.cs │ │ │ ├── VersionOld.cs │ │ │ ├── VirtualOverrideNewBaseObject.cs │ │ │ ├── VirtualOverrideNewChildObject.cs │ │ │ ├── VirtualOverrideNewChildWithDifferentOverrideObject.cs │ │ │ ├── Widget.cs │ │ │ ├── Widget1.cs │ │ │ ├── WidgetId.cs │ │ │ ├── WidgetId1.cs │ │ │ ├── WidgetIdJsonConverter.cs │ │ │ ├── WithEnums.cs │ │ │ ├── XNodeTestObject.cs │ │ │ └── XmlNodeTestObject.cs │ │ ├── Utilities │ │ │ ├── ConvertUtilsTests.cs │ │ │ ├── DateTimeUtilsTests.cs │ │ │ ├── DynamicReflectionDelegateFactoryTests.cs │ │ │ ├── EnumUtilsTests.cs │ │ │ ├── ExpressionReflectionDelegateFactoryTests.cs │ │ │ ├── LateboundReflectionDelegateFactoryTests.cs │ │ │ ├── ReflectionUtilsTests.cs │ │ │ └── StringUtilsTests.cs │ │ ├── bunny_pancake.jpg │ │ ├── large.json │ │ └── large_sample.xml │ │ ├── Newtonsoft.Json.sln │ │ ├── Newtonsoft.Json.sln.DotSettings │ │ ├── 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 │ │ │ ├── KeyValuePairConverter.cs │ │ │ ├── RegexConverter.cs │ │ │ ├── StringEnumConverter.cs │ │ │ ├── UnixDateTimeConverter.cs │ │ │ ├── VersionConverter.cs │ │ │ └── XmlNodeConverter.cs │ │ ├── DateFormatHandling.cs │ │ ├── DateParseHandling.cs │ │ ├── DateTimeZoneHandling.cs │ │ ├── DefaultJsonNameTable.cs │ │ ├── DefaultValueHandling.cs │ │ ├── Dynamic.snk │ │ ├── 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 │ │ ├── JsonNameTable.cs │ │ ├── JsonObjectAttribute.cs │ │ ├── JsonPosition.cs │ │ ├── JsonPropertyAttribute.cs │ │ ├── JsonReader.Async.cs │ │ ├── JsonReader.cs │ │ ├── JsonReaderException.cs │ │ ├── JsonRequiredAttribute.cs │ │ ├── JsonSerializationException.cs │ │ ├── JsonSerializer.cs │ │ ├── JsonSerializerSettings.cs │ │ ├── JsonTextReader.Async.cs │ │ ├── JsonTextReader.cs │ │ ├── JsonTextWriter.Async.cs │ │ ├── JsonTextWriter.cs │ │ ├── JsonToken.cs │ │ ├── JsonValidatingReader.cs │ │ ├── JsonWriter.Async.cs │ │ ├── JsonWriter.cs │ │ ├── JsonWriterException.cs │ │ ├── Linq │ │ │ ├── CommentHandling.cs │ │ │ ├── DuplicatePropertyNameHandling.cs │ │ │ ├── Extensions.cs │ │ │ ├── IJEnumerable.cs │ │ │ ├── JArray.Async.cs │ │ │ ├── JArray.cs │ │ │ ├── JConstructor.Async.cs │ │ │ ├── JConstructor.cs │ │ │ ├── JContainer.Async.cs │ │ │ ├── JContainer.cs │ │ │ ├── JEnumerable.cs │ │ │ ├── JObject.Async.cs │ │ │ ├── JObject.cs │ │ │ ├── JProperty.Async.cs │ │ │ ├── JProperty.cs │ │ │ ├── JPropertyDescriptor.cs │ │ │ ├── JPropertyKeyedCollection.cs │ │ │ ├── JRaw.Async.cs │ │ │ ├── JRaw.cs │ │ │ ├── JToken.Async.cs │ │ │ ├── JToken.cs │ │ │ ├── JTokenEqualityComparer.cs │ │ │ ├── JTokenReader.cs │ │ │ ├── JTokenType.cs │ │ │ ├── JTokenWriter.Async.cs │ │ │ ├── JTokenWriter.cs │ │ │ ├── JValue.Async.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 │ │ │ │ ├── QueryScanFilter.cs │ │ │ │ ├── RootFilter.cs │ │ │ │ ├── ScanFilter.cs │ │ │ │ └── ScanMultipleFilter.cs │ │ │ ├── LineInfoHandling.cs │ │ │ ├── MergeArrayHandling.cs │ │ │ └── MergeNullValueHandling.cs │ │ ├── MemberSerialization.cs │ │ ├── MetadataPropertyHandling.cs │ │ ├── MissingMemberHandling.cs │ │ ├── Newtonsoft.Json.ruleset │ │ ├── NullValueHandling.cs │ │ ├── ObjectCreationHandling.cs │ │ ├── PreserveReferencesHandling.cs │ │ ├── ReferenceLoopHandling.cs │ │ ├── Regular.Newtonsoft.Json.csproj │ │ ├── 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 │ │ │ ├── DefaultNamingStrategy.cs │ │ │ ├── DefaultReferenceResolver.cs │ │ │ ├── DefaultSerializationBinder.cs │ │ │ ├── DiagnosticsTraceWriter.cs │ │ │ ├── DynamicValueProvider.cs │ │ │ ├── ErrorContext.cs │ │ │ ├── ErrorEventArgs.cs │ │ │ ├── ExpressionValueProvider.cs │ │ │ ├── FormatterConverter.cs │ │ │ ├── IAttributeProvider.cs │ │ │ ├── IContractResolver.cs │ │ │ ├── IReferenceResolver.cs │ │ │ ├── ISerializationBinder.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 │ │ │ ├── KebabCaseNamingStrategy.cs │ │ │ ├── MemoryTraceWriter.cs │ │ │ ├── NamingStrategy.cs │ │ │ ├── ObjectConstructor.cs │ │ │ ├── OnErrorAttribute.cs │ │ │ ├── ReflectionAttributeProvider.cs │ │ │ ├── ReflectionValueProvider.cs │ │ │ ├── SerializationBinderAdapter.cs │ │ │ ├── SnakeCaseNamingStrategy.cs │ │ │ ├── TraceJsonReader.cs │ │ │ └── TraceJsonWriter.cs │ │ ├── SerializationBinder.cs │ │ ├── StringEscapeHandling.cs │ │ ├── TraceLevel.cs │ │ ├── TypeNameAssemblyFormatHandling.cs │ │ ├── TypeNameHandling.cs │ │ ├── Utilities │ │ │ ├── AsyncUtils.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 │ │ │ ├── EnumInfo.cs │ │ │ ├── EnumUtils.cs │ │ │ ├── ExpressionReflectionDelegateFactory.cs │ │ │ ├── FSharpUtils.cs │ │ │ ├── ILGeneratorExtensions.cs │ │ │ ├── ImmutableCollectionsUtils.cs │ │ │ ├── JavaScriptUtils.cs │ │ │ ├── JsonTokenUtils.cs │ │ │ ├── LateBoundReflectionDelegateFactory.cs │ │ │ ├── LinqBridge.cs │ │ │ ├── MathUtils.cs │ │ │ ├── MethodBinder.cs │ │ │ ├── MethodCall.cs │ │ │ ├── MiscellaneousUtils.cs │ │ │ ├── NullableAttributes.cs │ │ │ ├── ReflectionDelegateFactory.cs │ │ │ ├── ReflectionObject.cs │ │ │ ├── ReflectionUtils.cs │ │ │ ├── StringBuffer.cs │ │ │ ├── StringReference.cs │ │ │ ├── StringUtils.cs │ │ │ ├── StructMultiKey.cs │ │ │ ├── ThreadSafeStore.cs │ │ │ ├── TypeExtensions.cs │ │ │ └── ValidationUtils.cs │ │ ├── WriteState.cs │ │ ├── bin │ │ │ ├── Release │ │ │ │ ├── net20 │ │ │ │ │ ├── Regular.Newtonsoft.Json.dll │ │ │ │ │ ├── Regular.Newtonsoft.Json.pdb │ │ │ │ │ └── Regular.Newtonsoft.Json.xml │ │ │ │ ├── net35 │ │ │ │ │ ├── Regular.Newtonsoft.Json.dll │ │ │ │ │ ├── Regular.Newtonsoft.Json.pdb │ │ │ │ │ └── Regular.Newtonsoft.Json.xml │ │ │ │ ├── net40 │ │ │ │ │ ├── Regular.Newtonsoft.Json.dll │ │ │ │ │ ├── Regular.Newtonsoft.Json.pdb │ │ │ │ │ └── Regular.Newtonsoft.Json.xml │ │ │ │ ├── net45 │ │ │ │ │ ├── Regular.Newtonsoft.Json.dll │ │ │ │ │ ├── Regular.Newtonsoft.Json.pdb │ │ │ │ │ └── Regular.Newtonsoft.Json.xml │ │ │ │ ├── netstandard1.0 │ │ │ │ │ ├── Regular.Newtonsoft.Json.deps.json │ │ │ │ │ ├── Regular.Newtonsoft.Json.dll │ │ │ │ │ ├── Regular.Newtonsoft.Json.pdb │ │ │ │ │ └── Regular.Newtonsoft.Json.xml │ │ │ │ ├── netstandard1.3 │ │ │ │ │ ├── Regular.Newtonsoft.Json.deps.json │ │ │ │ │ ├── Regular.Newtonsoft.Json.dll │ │ │ │ │ ├── Regular.Newtonsoft.Json.pdb │ │ │ │ │ └── Regular.Newtonsoft.Json.xml │ │ │ │ ├── netstandard2.0 │ │ │ │ │ ├── Regular.Newtonsoft.Json.deps.json │ │ │ │ │ ├── Regular.Newtonsoft.Json.dll │ │ │ │ │ ├── Regular.Newtonsoft.Json.pdb │ │ │ │ │ └── Regular.Newtonsoft.Json.xml │ │ │ │ └── portable-net45+win8+wpa81+wp8 │ │ │ │ │ ├── Regular.Newtonsoft.Json.dll │ │ │ │ │ ├── Regular.Newtonsoft.Json.pdb │ │ │ │ │ └── Regular.Newtonsoft.Json.xml │ │ │ └── x64 │ │ │ │ └── Release │ │ │ │ ├── net20 │ │ │ │ ├── Regular.Newtonsoft.Json.dll │ │ │ │ ├── Regular.Newtonsoft.Json.pdb │ │ │ │ ├── Regular.Newtonsoft.Json.xml │ │ │ │ ├── big5.nlp │ │ │ │ ├── bopomofo.nlp │ │ │ │ ├── ksc.nlp │ │ │ │ ├── mscorlib.dll │ │ │ │ ├── normidna.nlp │ │ │ │ ├── normnfc.nlp │ │ │ │ ├── normnfd.nlp │ │ │ │ ├── normnfkc.nlp │ │ │ │ ├── normnfkd.nlp │ │ │ │ ├── prc.nlp │ │ │ │ ├── prcp.nlp │ │ │ │ ├── sortkey.nlp │ │ │ │ ├── sorttbls.nlp │ │ │ │ └── xjis.nlp │ │ │ │ ├── net35 │ │ │ │ ├── Regular.Newtonsoft.Json.dll │ │ │ │ ├── Regular.Newtonsoft.Json.pdb │ │ │ │ ├── Regular.Newtonsoft.Json.xml │ │ │ │ ├── big5.nlp │ │ │ │ ├── bopomofo.nlp │ │ │ │ ├── ksc.nlp │ │ │ │ ├── mscorlib.dll │ │ │ │ ├── normidna.nlp │ │ │ │ ├── normnfc.nlp │ │ │ │ ├── normnfd.nlp │ │ │ │ ├── normnfkc.nlp │ │ │ │ ├── normnfkd.nlp │ │ │ │ ├── prc.nlp │ │ │ │ ├── prcp.nlp │ │ │ │ ├── sortkey.nlp │ │ │ │ ├── sorttbls.nlp │ │ │ │ └── xjis.nlp │ │ │ │ ├── net40 │ │ │ │ ├── Regular.Newtonsoft.Json.dll │ │ │ │ ├── Regular.Newtonsoft.Json.pdb │ │ │ │ └── Regular.Newtonsoft.Json.xml │ │ │ │ ├── net45 │ │ │ │ ├── Regular.Newtonsoft.Json.dll │ │ │ │ ├── Regular.Newtonsoft.Json.pdb │ │ │ │ └── Regular.Newtonsoft.Json.xml │ │ │ │ ├── netstandard1.0 │ │ │ │ ├── Regular.Newtonsoft.Json.deps.json │ │ │ │ ├── Regular.Newtonsoft.Json.dll │ │ │ │ ├── Regular.Newtonsoft.Json.pdb │ │ │ │ └── Regular.Newtonsoft.Json.xml │ │ │ │ ├── netstandard1.3 │ │ │ │ ├── Regular.Newtonsoft.Json.deps.json │ │ │ │ ├── Regular.Newtonsoft.Json.dll │ │ │ │ ├── Regular.Newtonsoft.Json.pdb │ │ │ │ └── Regular.Newtonsoft.Json.xml │ │ │ │ ├── netstandard2.0 │ │ │ │ ├── Regular.Newtonsoft.Json.deps.json │ │ │ │ ├── Regular.Newtonsoft.Json.dll │ │ │ │ ├── Regular.Newtonsoft.Json.pdb │ │ │ │ └── Regular.Newtonsoft.Json.xml │ │ │ │ └── portable-net45+win8+wpa81+wp8 │ │ │ │ ├── Regular.Newtonsoft.Json.dll │ │ │ │ ├── Regular.Newtonsoft.Json.pdb │ │ │ │ └── Regular.Newtonsoft.Json.xml │ │ └── packageIcon.png │ │ ├── NuGet.Config │ │ └── global.json ├── license.txt └── readme.txt ├── README.md ├── Regular.addin ├── Regular.sln └── Regular ├── Converters └── RegexRuleConverter.cs ├── Enums ├── CaseSensitivity.cs ├── EnumDicts.cs ├── MatchType.cs ├── RuleEditorType.cs ├── RuleType.cs └── RuleValidationResult.cs ├── Installers ├── Regular_2016_Installer_1.0.1.msi ├── Regular_2018_Installer_1.0.1.msi ├── Regular_2019_Installer_1.0.1.msi ├── Regular_2020_Installer_1.0.1.msi └── Regular_2021_Installer_1.0.1.msi ├── Models ├── CategoryObject.cs ├── IRegexRulePart.cs ├── OptionObject.cs ├── ParameterObject.cs ├── RegexRule.cs ├── RegexRulePart.cs ├── RegexRuleParts │ ├── AnyAlphanumeric.cs │ ├── AnyDigit.cs │ ├── AnyLetter.cs │ ├── CloseParenthesis.cs │ ├── CustomText.cs │ ├── FullStop.cs │ ├── Hyphen.cs │ ├── OpenParenthesis.cs │ ├── OptionSet.cs │ └── Underscore.cs ├── RuleEditorInfo.cs ├── RuleValidationInfo.cs └── RuleValidationOutput.cs ├── Properties ├── Annotations.cs └── AssemblyInfo.cs ├── Regular.csproj ├── Regular.csproj.DotSettings ├── Regular.csproj.user ├── RegularApp.cs ├── Resources ├── ExportRules.png ├── ImportRules.png ├── RegularFavicon.png ├── RegularStyles.xaml ├── RuleManager.png └── TransferRules.png ├── RibbonLauncher ├── Enums │ ├── RegularToolGroup.cs │ └── RibbonButtonType.cs ├── RegularRibbon.cs └── RegularTool.cs ├── Services ├── DocumentCacheService.cs └── RegexRuleCacheService.cs ├── Tools ├── RuleManager │ └── RuleManager.cs └── TransferRules │ ├── ExportRules.cs │ └── ImportRules.cs ├── UI ├── ConfirmationDialog │ ├── Model │ │ └── ConfirmationDialogInfo.cs │ ├── View │ │ ├── ConfirmationDialogView.xaml │ │ └── ConfirmationDialogView.xaml.cs │ └── ViewModel │ │ └── ConfirmationDialogViewModel.cs ├── DebugWindow │ ├── View │ │ ├── DebugWindowView.xaml │ │ └── DebugWindowView.xaml.cs │ └── ViewModel │ │ └── DebugWindowViewModel.cs ├── ImportRule │ ├── Commands │ │ ├── RenameAllCommand.cs │ │ ├── RenameRuleCommand.cs │ │ ├── ReplaceAllCommand.cs │ │ ├── ReplaceRuleCommand.cs │ │ ├── SkipAllCommand.cs │ │ └── SkipRuleCommand.cs │ ├── Enums │ │ └── OverrideMode.cs │ ├── Model │ │ └── ImportRuleInfo.cs │ ├── View │ │ ├── ImportRuleView.xaml │ │ └── ImportRuleView.xaml.cs │ └── ViewModel │ │ └── ImportRuleViewModel.cs ├── InfoWindow │ ├── View │ │ ├── InfoWindowView.xaml │ │ └── InfoWindowView.xaml.cs │ └── ViewModel │ │ └── InfoWindowViewModel.cs ├── NotifyPropertyChangedBase.cs ├── ObservableObject.cs ├── OptionSetEditor │ ├── View │ │ ├── OptionSetEditorView.xaml │ │ └── OptionSetEditorView.xaml.cs │ └── ViewModel │ │ └── OptionSetEditorViewModel.cs ├── RuleEditor │ ├── Commands │ │ ├── AddRulePartCommand.cs │ │ ├── DeleteRulePartCommand.cs │ │ ├── EditRulePartCommand.cs │ │ ├── GenerateCompliantExampleCommand.cs │ │ ├── MoveRulePartDownCommand.cs │ │ ├── MoveRulePartUpCommand.cs │ │ ├── SubmitRuleCommand.cs │ │ ├── TriggerCategoryPanelCommand.cs │ │ ├── TriggerSelectAllCategoriesCommand.cs │ │ ├── TriggerSelectCategoryCommand.cs │ │ └── UpdateRegexStringCommand.cs │ ├── View │ │ ├── RuleEditorView.xaml │ │ └── RuleEditorView.xaml.cs │ └── ViewModel │ │ └── RuleEditorViewModel.cs ├── RuleManager │ ├── Commands │ │ ├── AddRuleCommand.cs │ │ ├── DeleteRuleCommand.cs │ │ ├── DuplicateRuleCommand.cs │ │ ├── EditRuleCommand.cs │ │ ├── ExecuteRuleCommand.cs │ │ ├── ExportReportCommand.cs │ │ ├── MoveRuleDownCommand.cs │ │ └── MoveRuleUpCommand.cs │ ├── View │ │ ├── RuleManagerView.xaml │ │ └── RuleManagerView.xaml.cs │ └── ViewModel │ │ └── RuleManagerViewModel.cs ├── SelectElements │ ├── Commands │ │ ├── SelectElementsCommand.cs │ │ ├── TriggerSelectAllElementsCommand.cs │ │ └── TriggerSelectElementCommand.cs │ ├── Model │ │ └── SelectElementsInfo.cs │ ├── View │ │ ├── SelectElementsView.xaml │ │ └── SelectElementsView.xaml.cs │ └── ViewModel │ │ └── SelectElementsViewModel.cs └── SelectElementsView.xaml.cs ├── Utilities ├── BitmapUtils.cs ├── CategoryUtils.cs ├── DocumentGuidUtils.cs ├── EnumUtils.cs ├── ExtensibleStorageUtils.cs ├── IOUtils.cs ├── InputValidationServices.cs ├── JSONFileUtils.cs ├── ParameterUtils.cs ├── RegexAssemblyUtils.cs ├── RuleExecutionUtils.cs ├── SerializationUtils.cs ├── SetUtils.cs ├── StringUtils.cs └── VisualTreeUtils.cs ├── bin └── x64 │ ├── Rvt2018 │ ├── Regular.Newtonsoft.Json.dll │ └── Regular.dll │ ├── Rvt2019 │ ├── Regular.Newtonsoft.Json.dll │ └── Regular.dll │ ├── Rvt2020 │ ├── Regular.Newtonsoft.Json.dll │ └── Regular.dll │ └── Rvt2021 │ ├── Regular.Newtonsoft.Json.dll │ └── Regular.dll └── packages.config /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/LICENSE -------------------------------------------------------------------------------- /NewtonsoftJSON/Bin/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Bin/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /NewtonsoftJSON/Bin/net20/Newtonsoft.Json.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Bin/net20/Newtonsoft.Json.pdb -------------------------------------------------------------------------------- /NewtonsoftJSON/Bin/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Bin/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /NewtonsoftJSON/Bin/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Bin/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /NewtonsoftJSON/Bin/net35/Newtonsoft.Json.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Bin/net35/Newtonsoft.Json.pdb -------------------------------------------------------------------------------- /NewtonsoftJSON/Bin/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Bin/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /NewtonsoftJSON/Bin/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Bin/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /NewtonsoftJSON/Bin/net40/Newtonsoft.Json.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Bin/net40/Newtonsoft.Json.pdb -------------------------------------------------------------------------------- /NewtonsoftJSON/Bin/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Bin/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /NewtonsoftJSON/Bin/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Bin/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /NewtonsoftJSON/Bin/net45/Newtonsoft.Json.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Bin/net45/Newtonsoft.Json.pdb -------------------------------------------------------------------------------- /NewtonsoftJSON/Bin/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Bin/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /NewtonsoftJSON/Bin/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Bin/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /NewtonsoftJSON/Bin/netstandard1.0/Newtonsoft.Json.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Bin/netstandard1.0/Newtonsoft.Json.pdb -------------------------------------------------------------------------------- /NewtonsoftJSON/Bin/netstandard1.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Bin/netstandard1.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /NewtonsoftJSON/Bin/netstandard1.3/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Bin/netstandard1.3/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /NewtonsoftJSON/Bin/netstandard1.3/Newtonsoft.Json.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Bin/netstandard1.3/Newtonsoft.Json.pdb -------------------------------------------------------------------------------- /NewtonsoftJSON/Bin/netstandard1.3/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Bin/netstandard1.3/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /NewtonsoftJSON/Bin/netstandard2.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Bin/netstandard2.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /NewtonsoftJSON/Bin/netstandard2.0/Newtonsoft.Json.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Bin/netstandard2.0/Newtonsoft.Json.pdb -------------------------------------------------------------------------------- /NewtonsoftJSON/Bin/netstandard2.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Bin/netstandard2.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /NewtonsoftJSON/Bin/portable-net40+win8+wpa81+wp8+sl5/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Bin/portable-net40+win8+wpa81+wp8+sl5/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /NewtonsoftJSON/Bin/portable-net40+win8+wpa81+wp8+sl5/Newtonsoft.Json.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Bin/portable-net40+win8+wpa81+wp8+sl5/Newtonsoft.Json.pdb -------------------------------------------------------------------------------- /NewtonsoftJSON/Bin/portable-net40+win8+wpa81+wp8+sl5/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Bin/portable-net40+win8+wpa81+wp8+sl5/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /NewtonsoftJSON/Bin/portable-net45+win8+wpa81+wp8/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Bin/portable-net45+win8+wpa81+wp8/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /NewtonsoftJSON/Bin/portable-net45+win8+wpa81+wp8/Newtonsoft.Json.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Bin/portable-net45+win8+wpa81+wp8/Newtonsoft.Json.pdb -------------------------------------------------------------------------------- /NewtonsoftJSON/Bin/portable-net45+win8+wpa81+wp8/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Bin/portable-net45+win8+wpa81+wp8/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Build/Sign-Package.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Build/Sign-Package.ps1 -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Build/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Build/appsettings.json -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Build/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Build/build.ps1 -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Build/localbuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Build/localbuild.ps1 -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Build/psake.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Build/psake.psm1 -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Build/runbuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Build/runbuild.cmd -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Build/runbuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Build/runbuild.ps1 -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Build/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Build/version.json -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/ConditionalProperties.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/ConditionalProperties.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/ContractResolver.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/ContractResolver.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/ConvertingJSONandXML.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/ConvertingJSONandXML.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/CreatingLINQtoJSON.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/CreatingLINQtoJSON.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/CustomCreationConverter.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/CustomCreationConverter.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/DatesInJSON.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/DatesInJSON.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Introduction.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Introduction.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/JsonNetVsDotNetSerializers.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/JsonNetVsDotNetSerializers.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/JsonSchema.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/JsonSchema.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/LINQtoJSON.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/LINQtoJSON.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/ParsingLINQtoJSON.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/ParsingLINQtoJSON.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Performance.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Performance.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/PreserveObjectReferences.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/PreserveObjectReferences.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/QueryingLINQtoJSON.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/QueryingLINQtoJSON.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/ReadingWritingJSON.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/ReadingWritingJSON.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/ReducingSerializedJSONSize.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/ReducingSerializedJSONSize.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Bson/DeserializeFromBson.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Bson/DeserializeFromBson.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Bson/DeserializeFromBsonCollection.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Bson/DeserializeFromBsonCollection.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Bson/SerializeToBson.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Bson/SerializeToBson.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Json/CustomJsonReader.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Json/CustomJsonReader.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Json/CustomJsonWriter.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Json/CustomJsonWriter.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Json/ReadJsonWithJsonTextReader.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Json/ReadJsonWithJsonTextReader.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Json/ReadMultipleContentWithJsonReader.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Json/ReadMultipleContentWithJsonReader.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Json/WriteJsonWithJsonTextWriter.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Json/WriteJsonWithJsonTextWriter.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/JsonPath/ErrorWhenNoMatchQuery.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/JsonPath/ErrorWhenNoMatchQuery.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/JsonPath/QueryJsonSelectToken.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/JsonPath/QueryJsonSelectToken.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/JsonPath/QueryJsonSelectTokenEscaped.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/JsonPath/QueryJsonSelectTokenEscaped.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/JsonPath/QueryJsonSelectTokenJsonPath.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/JsonPath/QueryJsonSelectTokenJsonPath.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/JsonPath/QueryJsonSelectTokenWithLinq.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/JsonPath/QueryJsonSelectTokenWithLinq.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/JsonPath/RegexQuery.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/JsonPath/RegexQuery.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/JsonPath/StrictEqualsQuery.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/JsonPath/StrictEqualsQuery.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/Clone.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/Clone.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/CreateJsonAnonymousObject.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/CreateJsonAnonymousObject.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/CreateJsonCollectionInitializer.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/CreateJsonCollectionInitializer.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/CreateJsonDeclaratively.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/CreateJsonDeclaratively.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/CreateJsonDynamic.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/CreateJsonDynamic.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/CreateJsonJTokenWriter.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/CreateJsonJTokenWriter.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/CreateJsonManually.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/CreateJsonManually.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/CreateReader.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/CreateReader.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/CreateWriter.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/CreateWriter.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/DeepEquals.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/DeepEquals.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/DeserializeWithLinq.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/DeserializeWithLinq.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/FromObject.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/FromObject.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/JObjectProperties.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/JObjectProperties.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/JTokenAnnotation.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/JTokenAnnotation.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/JValueCast.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/JValueCast.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/JValueValue.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/JValueValue.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/MergeJson.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/MergeJson.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/ModifyJson.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/ModifyJson.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/ParseJsonAny.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/ParseJsonAny.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/ParseJsonArray.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/ParseJsonArray.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/ParseJsonObject.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/ParseJsonObject.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/QueryJson.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/QueryJson.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/QueryJsonDynamic.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/QueryJsonDynamic.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/QueryJsonLinq.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/QueryJsonLinq.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/ReadJTokenFromBson.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/ReadJTokenFromBson.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/ReadJson.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/ReadJson.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/SerializeWithLinq.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/SerializeWithLinq.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/ToObjectComplex.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/ToObjectComplex.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/ToObjectGeneric.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/ToObjectGeneric.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/ToObjectType.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/ToObjectType.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/ToString.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/ToString.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/ToStringJsonConverter.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/ToStringJsonConverter.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/WriteJTokenToBson.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/WriteJTokenToBson.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Linq/WriteToJsonFile.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Linq/WriteToJsonFile.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Samples.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Samples.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Schema/CreateJsonSchemaManually.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Schema/CreateJsonSchemaManually.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Schema/JTokenIsValid.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Schema/JTokenIsValid.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Schema/JTokenIsValidWithMessages.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Schema/JTokenIsValidWithMessages.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Schema/JTokenValidateWithEvent.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Schema/JTokenValidateWithEvent.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Schema/JsonSchemaParse.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Schema/JsonSchemaParse.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Schema/LoadJsonSchemaFromFile.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Schema/LoadJsonSchemaFromFile.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Schema/RefJsonSchemaResolver.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Schema/RefJsonSchemaResolver.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Schema/SaveJsonSchemaToFile.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Schema/SaveJsonSchemaToFile.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/CustomContractResolver.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/CustomContractResolver.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/CustomJsonConverter.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/CustomJsonConverter.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/CustomJsonConverterGeneric.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/CustomJsonConverterGeneric.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/CustomTraceWriter.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/CustomTraceWriter.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/DataContractAndDataMember.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/DataContractAndDataMember.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/DefaultSettings.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/DefaultSettings.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/DefaultValueAttributeIgnore.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/DefaultValueAttributeIgnore.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/DefaultValueHandlingIgnore.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/DefaultValueHandlingIgnore.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/DeserializeAnonymousType.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/DeserializeAnonymousType.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/DeserializeCollection.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/DeserializeCollection.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/DeserializeDataSet.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/DeserializeDataSet.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/DeserializeDateFormatString.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/DeserializeDateFormatString.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/DeserializeDictionary.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/DeserializeDictionary.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/DeserializeExtensionData.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/DeserializeExtensionData.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/DeserializeObject.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/DeserializeObject.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/ErrorHandlingAttribute.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/ErrorHandlingAttribute.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/ErrorHandlingEvent.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/ErrorHandlingEvent.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/JsonConstructorAttribute.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/JsonConstructorAttribute.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/JsonConverterAttributeClass.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/JsonConverterAttributeClass.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/JsonObjectAttributeOptIn.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/JsonObjectAttributeOptIn.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/JsonPropertyName.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/JsonPropertyName.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/JsonPropertyOrder.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/JsonPropertyOrder.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/JsonPropertyRequired.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/JsonPropertyRequired.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/MaxDepth.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/MaxDepth.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/NamingStrategyAttributes.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/NamingStrategyAttributes.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/NamingStrategyCamelCase.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/NamingStrategyCamelCase.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/NamingStrategySnakeCase.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/NamingStrategySnakeCase.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/NullValueHandlingIgnore.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/NullValueHandlingIgnore.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/PopulateObject.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/PopulateObject.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/PropertyJsonIgnore.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/PropertyJsonIgnore.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/ReferenceLoopHandlingIgnore.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/ReferenceLoopHandlingIgnore.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/SerializeCollection.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/SerializeCollection.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/SerializeContractResolver.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/SerializeContractResolver.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/SerializeDataSet.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/SerializeDataSet.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/SerializeDateFormatHandling.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/SerializeDateFormatHandling.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/SerializeDateFormatString.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/SerializeDateFormatString.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/SerializeDictionary.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/SerializeDictionary.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/SerializeExtensionData.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/SerializeExtensionData.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/SerializeObject.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/SerializeObject.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/SerializeRawJson.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/SerializeRawJson.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/SerializeTypeNameHandling.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/SerializeTypeNameHandling.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/SerializeUnindentedJson.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/SerializeUnindentedJson.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/SerializeWithJsonConverters.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/SerializeWithJsonConverters.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Serializer/TraceWriter.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Serializer/TraceWriter.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Xml/ConvertJsonToXml.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Xml/ConvertJsonToXml.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Xml/ConvertXmlToJson.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Xml/ConvertXmlToJson.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/Samples/Xml/ConvertXmlToJsonForceArray.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/Samples/Xml/ConvertXmlToJsonForceArray.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/SelectToken.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/SelectToken.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/SerializationAttributes.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/SerializationAttributes.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/SerializationCallbacks.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/SerializationCallbacks.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/SerializationErrorHandling.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/SerializationErrorHandling.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/SerializationGuide.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/SerializationGuide.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/SerializationSettings.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/SerializationSettings.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/SerializationTracing.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/SerializationTracing.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/SerializingCollections.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/SerializingCollections.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/SerializingJSON.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/SerializingJSON.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/SerializingJSONFragments.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/SerializingJSONFragments.aml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/cross.png -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/doc.content: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/doc.content -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/doc.shfbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/doc.shfbproj -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/icons/favicon.ico -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/icons/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/icons/logo.jpg -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/license.txt -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/performance.png -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/readme.txt -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Doc/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Doc/tick.png -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Directory.Build.props -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.TestConsole/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.TestConsole/App.config -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.TestConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.TestConsole/Program.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/App.config -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Benchmarks/Runner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Benchmarks/Runner.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Bson/BsonReaderAsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Bson/BsonReaderAsyncTests.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Bson/BsonReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Bson/BsonReaderTests.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Bson/BsonWriterAsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Bson/BsonWriterAsyncTests.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Bson/BsonWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Bson/BsonWriterTests.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/DemoTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/DemoTests.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/ExceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/ExceptionTests.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/FileSystemEntityModel.edmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/FileSystemEntityModel.edmx -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue0198.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue0198.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue0573.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue0573.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1307.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1307.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1321.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1321.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1322.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1322.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1327.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1327.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1351.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1351.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1353.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1353.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1362.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1362.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1396.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1396.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1404.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1404.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1445.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1445.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1460.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1460.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1461.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1461.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1512.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1512.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1541.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1541.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1545.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1545.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1552.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1552.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1561.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1561.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1566.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1566.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1569.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1569.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1574.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1574.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1576.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1576.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1592.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1592.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1593.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1593.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1597.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1597.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1598.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1598.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1619.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1619.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1620.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1620.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1642.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1642.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1682.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1682.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1708.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1708.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1711.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1711.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1719.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1719.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1725.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1725.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1734.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1734.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1752.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1752.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1757.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1757.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1778.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1778.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1796.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1796.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1798.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1798.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1834.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1834.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1837.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1837.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1874.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1874.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1877.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1877.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1962.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1962.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1984.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue1984.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue2082.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue2082.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue2156.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue2156.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue2165.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue2165.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue2176.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Issues/Issue2176.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/JsonArrayAttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/JsonArrayAttributeTests.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/JsonConvertTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/JsonConvertTest.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/JsonTextWriterAsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/JsonTextWriterAsyncTests.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/JsonTextWriterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/JsonTextWriterTest.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/JsonValidatingReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/JsonValidatingReaderTests.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/AnnotationsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/AnnotationsTests.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/DynamicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/DynamicTests.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/JArrayTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/JArrayTests.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/JConstructorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/JConstructorTests.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/JObjectAsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/JObjectAsyncTests.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/JObjectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/JObjectTests.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/JPropertyAsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/JPropertyAsyncTests.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/JPropertyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/JPropertyTests.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/JRawTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/JRawTests.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/JTokenAsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/JTokenAsyncTests.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/JTokenReaderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/JTokenReaderTest.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/JTokenTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/JTokenTests.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/JTokenWriterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/JTokenWriterTest.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/JValueAsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/JValueAsyncTests.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/JValueTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/JValueTests.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/LinqToJsonAsyncTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/LinqToJsonAsyncTests.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/LinqToJsonTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/LinqToJsonTest.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/MergeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Linq/MergeTests.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/LinqToSql/Department.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/LinqToSql/Department.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/LinqToSql/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/LinqToSql/Person.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/LinqToSql/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/LinqToSql/Role.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Newtonsoft.Json.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Newtonsoft.Json.Tests.csproj -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/PoisonText.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/PoisonText.txt -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/ExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/ExtensionsTests.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/JsonSchemaTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/JsonSchemaTests.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/PerformanceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/PerformanceTests.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/Specs/disallow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/Specs/disallow.json -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/Specs/enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/Specs/enum.json -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/Specs/extends.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/Specs/extends.json -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/Specs/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/Specs/items.json -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/Specs/maxItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/Specs/maxItems.json -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/Specs/maxLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/Specs/maxLength.json -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/Specs/maximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/Specs/maximum.json -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/Specs/minItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/Specs/minItems.json -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/Specs/minLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/Specs/minLength.json -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/Specs/minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/Specs/minimum.json -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/Specs/pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/Specs/pattern.json -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/Specs/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/Specs/properties.json -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/Specs/ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/Specs/ref.json -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/Specs/required.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/Specs/required.json -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/Specs/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Schema/Specs/type.json -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Serialization/FSharpTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/Serialization/FSharpTests.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/SpaceShipV2.bson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/SpaceShipV2.bson -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestFixtureBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestFixtureBase.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/A.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/A.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/AATestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/AATestClass.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Aa.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Aa.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Address.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Animal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Animal.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Antworten.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Antworten.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Article.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Article.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/B.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/B.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/BBTestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/BBTestClass.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Bar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Bar.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Bar1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Bar1.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/BaseClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/BaseClass.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/BaseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/BaseType.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Bb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Bb.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Binding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Binding.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/BusRun.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/BusRun.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Car.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/ChildClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/ChildClass.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/ClassWithGuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/ClassWithGuid.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/ClientMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/ClientMap.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/ComplexItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/ComplexItem.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Component.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Component.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Computer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Computer.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/ConsoleWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/ConsoleWriter.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Container.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Container.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Content.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Content.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/ConvertibleId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/ConvertibleId.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/DecimalTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/DecimalTest.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/DerivedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/DerivedEvent.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/DerivedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/DerivedType.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/DictionaryKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/DictionaryKey.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/DoubleClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/DoubleClass.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/EnumA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/EnumA.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/ErroringClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/ErroringClass.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Events/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Events/Event.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Events/Event1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Events/Event1.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/FaqItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/FaqItem.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Foo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Foo.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Foo1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Foo1.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Foo64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Foo64.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/FooBar1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/FooBar1.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/FooRequired.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/FooRequired.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Friend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Friend.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/GameObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/GameObject.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/GenericImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/GenericImpl.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/HasByteArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/HasByteArray.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/HolderClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/HolderClass.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Human.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Human.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/IKeyValueId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/IKeyValueId.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/IMainClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/IMainClass.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/IMyInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/IMyInterface.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/ISubclass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/ISubclass.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/ISubclassBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/ISubclassBase.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Invoice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Invoice.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Item.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/ItemBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/ItemBase.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/JaggedArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/JaggedArray.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/KVPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/KVPair.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/KeyValueId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/KeyValueId.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Link.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Link.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/ListOfIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/ListOfIds.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/ListTestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/ListTestClass.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/LogEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/LogEntry.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/LogEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/LogEvent.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/MainClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/MainClass.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Money/Tags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Money/Tags.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Movie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Movie.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/MyClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/MyClass.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/MyEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/MyEnum.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/MyFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/MyFactory.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/MyTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/MyTuple.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Name.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Name.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/NameContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/NameContainer.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/NonRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/NonRequest.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/NullTestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/NullTestClass.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/NullableGuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/NullableGuid.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/OptInClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/OptInClass.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Pair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Pair.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/PersonError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/PersonError.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/PersonRaw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/PersonRaw.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/PhoneNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/PhoneNumber.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Pos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Pos.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/PosConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/PosConverter.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/PosDouble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/PosDouble.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Product.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/ProductShort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/ProductShort.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Ratio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Ratio.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/RootObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/RootObject.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Shortie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Shortie.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/SqlTypesDataSet.xss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Store.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/StoreColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/StoreColor.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/StructTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/StructTest.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/SubKlass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/SubKlass.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Subclass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Subclass.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/SuperKlass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/SuperKlass.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Test.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/TestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/TestClass.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/TestObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/TestObject.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/TypeClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/TypeClass.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Vector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Vector.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/VersionOld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/VersionOld.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Widget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Widget.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Widget1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/Widget1.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/WidgetId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/WidgetId.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/WidgetId1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/WidgetId1.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/WithEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/TestObjects/WithEnums.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/bunny_pancake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/bunny_pancake.jpg -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/large.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/large.json -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/large_sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.Tests/large_sample.xml -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.sln -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json.sln.DotSettings -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Bson/BsonBinaryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Bson/BsonBinaryType.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Bson/BsonBinaryWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Bson/BsonBinaryWriter.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Bson/BsonObjectId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Bson/BsonObjectId.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Bson/BsonReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Bson/BsonReader.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Bson/BsonToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Bson/BsonToken.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Bson/BsonType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Bson/BsonType.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Bson/BsonWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Bson/BsonWriter.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/ConstructorHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/ConstructorHandling.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Converters/BinaryConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Converters/BinaryConverter.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Converters/DataSetConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Converters/DataSetConverter.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Converters/RegexConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Converters/RegexConverter.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Converters/VersionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Converters/VersionConverter.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Converters/XmlNodeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Converters/XmlNodeConverter.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/DateFormatHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/DateFormatHandling.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/DateParseHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/DateParseHandling.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/DateTimeZoneHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/DateTimeZoneHandling.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/DefaultJsonNameTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/DefaultJsonNameTable.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/DefaultValueHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/DefaultValueHandling.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Dynamic.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Dynamic.snk -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/FloatFormatHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/FloatFormatHandling.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/FloatParseHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/FloatParseHandling.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/FormatterAssemblyStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/FormatterAssemblyStyle.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Formatting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Formatting.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/IArrayPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/IArrayPool.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/IJsonLineInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/IJsonLineInfo.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonArrayAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonArrayAttribute.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonConstructorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonConstructorAttribute.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonContainerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonContainerAttribute.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonConvert.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonConverter.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonConverterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonConverterAttribute.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonConverterCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonConverterCollection.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonDictionaryAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonDictionaryAttribute.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonException.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonExtensionDataAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonExtensionDataAttribute.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonIgnoreAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonIgnoreAttribute.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonNameTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonNameTable.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonObjectAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonObjectAttribute.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonPosition.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonPropertyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonPropertyAttribute.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonReader.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonReader.Async.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonReader.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonReaderException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonReaderException.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonRequiredAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonRequiredAttribute.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonSerializationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonSerializationException.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonSerializer.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonSerializerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonSerializerSettings.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonTextReader.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonTextReader.Async.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonTextReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonTextReader.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonTextWriter.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonTextWriter.Async.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonTextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonTextWriter.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonToken.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonValidatingReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonValidatingReader.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonWriter.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonWriter.Async.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonWriter.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonWriterException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/JsonWriterException.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/CommentHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/CommentHandling.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/Extensions.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/IJEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/IJEnumerable.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JArray.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JArray.Async.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JArray.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JConstructor.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JConstructor.Async.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JConstructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JConstructor.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JContainer.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JContainer.Async.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JContainer.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JEnumerable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JEnumerable.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JObject.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JObject.Async.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JObject.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JProperty.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JProperty.Async.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JProperty.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JPropertyDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JPropertyDescriptor.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JRaw.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JRaw.Async.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JRaw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JRaw.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JToken.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JToken.Async.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JToken.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JTokenEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JTokenEqualityComparer.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JTokenReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JTokenReader.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JTokenType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JTokenType.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JTokenWriter.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JTokenWriter.Async.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JTokenWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JTokenWriter.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JValue.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JValue.Async.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JValue.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JsonLoadSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JsonLoadSettings.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JsonMergeSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JsonMergeSettings.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JsonPath/FieldFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JsonPath/FieldFilter.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JsonPath/JPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JsonPath/JPath.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JsonPath/PathFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JsonPath/PathFilter.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JsonPath/QueryFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JsonPath/QueryFilter.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JsonPath/RootFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JsonPath/RootFilter.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JsonPath/ScanFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/JsonPath/ScanFilter.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/LineInfoHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/LineInfoHandling.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/MergeArrayHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/MergeArrayHandling.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/MergeNullValueHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Linq/MergeNullValueHandling.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/MemberSerialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/MemberSerialization.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/MetadataPropertyHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/MetadataPropertyHandling.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/MissingMemberHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/MissingMemberHandling.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Newtonsoft.Json.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Newtonsoft.Json.ruleset -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/NullValueHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/NullValueHandling.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/ObjectCreationHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/ObjectCreationHandling.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/PreserveReferencesHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/PreserveReferencesHandling.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/ReferenceLoopHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/ReferenceLoopHandling.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Regular.Newtonsoft.Json.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Regular.Newtonsoft.Json.csproj -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Required.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Required.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Schema/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Schema/Extensions.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Schema/JsonSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Schema/JsonSchema.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Schema/JsonSchemaBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Schema/JsonSchemaBuilder.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Schema/JsonSchemaConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Schema/JsonSchemaConstants.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Schema/JsonSchemaException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Schema/JsonSchemaException.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Schema/JsonSchemaGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Schema/JsonSchemaGenerator.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Schema/JsonSchemaModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Schema/JsonSchemaModel.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Schema/JsonSchemaNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Schema/JsonSchemaNode.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Schema/JsonSchemaResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Schema/JsonSchemaResolver.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Schema/JsonSchemaType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Schema/JsonSchemaType.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Schema/JsonSchemaWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Schema/JsonSchemaWriter.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Schema/ValidationEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Schema/ValidationEventArgs.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Serialization/ErrorContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Serialization/ErrorContext.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Serialization/ErrorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Serialization/ErrorEventArgs.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Serialization/ITraceWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Serialization/ITraceWriter.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Serialization/IValueProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Serialization/IValueProvider.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Serialization/JsonContract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Serialization/JsonContract.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Serialization/JsonProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Serialization/JsonProperty.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Serialization/NamingStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Serialization/NamingStrategy.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/SerializationBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/SerializationBinder.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/StringEscapeHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/StringEscapeHandling.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/TraceLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/TraceLevel.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/TypeNameHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/TypeNameHandling.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/AsyncUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/AsyncUtils.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/Base64Encoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/Base64Encoder.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/CollectionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/CollectionUtils.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/CollectionWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/CollectionWrapper.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/ConvertUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/ConvertUtils.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/DateTimeParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/DateTimeParser.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/DateTimeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/DateTimeUtils.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/DictionaryWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/DictionaryWrapper.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/DynamicProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/DynamicProxy.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/DynamicUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/DynamicUtils.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/EnumInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/EnumInfo.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/EnumUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/EnumUtils.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/FSharpUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/FSharpUtils.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/JavaScriptUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/JavaScriptUtils.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/JsonTokenUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/JsonTokenUtils.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/LinqBridge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/LinqBridge.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/MathUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/MathUtils.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/MethodBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/MethodBinder.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/MethodCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/MethodCall.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/MiscellaneousUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/MiscellaneousUtils.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/NullableAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/NullableAttributes.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/ReflectionObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/ReflectionObject.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/ReflectionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/ReflectionUtils.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/StringBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/StringBuffer.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/StringReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/StringReference.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/StringUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/StringUtils.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/StructMultiKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/StructMultiKey.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/ThreadSafeStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/ThreadSafeStore.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/TypeExtensions.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/ValidationUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/Utilities/ValidationUtils.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/WriteState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/WriteState.cs -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/bin/x64/Release/net20/big5.nlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/bin/x64/Release/net20/big5.nlp -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/bin/x64/Release/net20/ksc.nlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/bin/x64/Release/net20/ksc.nlp -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/bin/x64/Release/net20/prc.nlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/bin/x64/Release/net20/prc.nlp -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/bin/x64/Release/net20/prcp.nlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/bin/x64/Release/net20/prcp.nlp -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/bin/x64/Release/net20/xjis.nlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/bin/x64/Release/net20/xjis.nlp -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/bin/x64/Release/net35/big5.nlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/bin/x64/Release/net35/big5.nlp -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/bin/x64/Release/net35/ksc.nlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/bin/x64/Release/net35/ksc.nlp -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/bin/x64/Release/net35/prc.nlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/bin/x64/Release/net35/prc.nlp -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/bin/x64/Release/net35/prcp.nlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/bin/x64/Release/net35/prcp.nlp -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/bin/x64/Release/net35/xjis.nlp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/bin/x64/Release/net35/xjis.nlp -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/Newtonsoft.Json/packageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/Newtonsoft.Json/packageIcon.png -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/NuGet.Config -------------------------------------------------------------------------------- /NewtonsoftJSON/Source/Src/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/Source/Src/global.json -------------------------------------------------------------------------------- /NewtonsoftJSON/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/license.txt -------------------------------------------------------------------------------- /NewtonsoftJSON/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/NewtonsoftJSON/readme.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/README.md -------------------------------------------------------------------------------- /Regular.addin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular.addin -------------------------------------------------------------------------------- /Regular.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular.sln -------------------------------------------------------------------------------- /Regular/Converters/RegexRuleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Converters/RegexRuleConverter.cs -------------------------------------------------------------------------------- /Regular/Enums/CaseSensitivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Enums/CaseSensitivity.cs -------------------------------------------------------------------------------- /Regular/Enums/EnumDicts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Enums/EnumDicts.cs -------------------------------------------------------------------------------- /Regular/Enums/MatchType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Enums/MatchType.cs -------------------------------------------------------------------------------- /Regular/Enums/RuleEditorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Enums/RuleEditorType.cs -------------------------------------------------------------------------------- /Regular/Enums/RuleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Enums/RuleType.cs -------------------------------------------------------------------------------- /Regular/Enums/RuleValidationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Enums/RuleValidationResult.cs -------------------------------------------------------------------------------- /Regular/Installers/Regular_2016_Installer_1.0.1.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Installers/Regular_2016_Installer_1.0.1.msi -------------------------------------------------------------------------------- /Regular/Installers/Regular_2018_Installer_1.0.1.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Installers/Regular_2018_Installer_1.0.1.msi -------------------------------------------------------------------------------- /Regular/Installers/Regular_2019_Installer_1.0.1.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Installers/Regular_2019_Installer_1.0.1.msi -------------------------------------------------------------------------------- /Regular/Installers/Regular_2020_Installer_1.0.1.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Installers/Regular_2020_Installer_1.0.1.msi -------------------------------------------------------------------------------- /Regular/Installers/Regular_2021_Installer_1.0.1.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Installers/Regular_2021_Installer_1.0.1.msi -------------------------------------------------------------------------------- /Regular/Models/CategoryObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Models/CategoryObject.cs -------------------------------------------------------------------------------- /Regular/Models/IRegexRulePart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Models/IRegexRulePart.cs -------------------------------------------------------------------------------- /Regular/Models/OptionObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Models/OptionObject.cs -------------------------------------------------------------------------------- /Regular/Models/ParameterObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Models/ParameterObject.cs -------------------------------------------------------------------------------- /Regular/Models/RegexRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Models/RegexRule.cs -------------------------------------------------------------------------------- /Regular/Models/RegexRulePart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Models/RegexRulePart.cs -------------------------------------------------------------------------------- /Regular/Models/RegexRuleParts/AnyAlphanumeric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Models/RegexRuleParts/AnyAlphanumeric.cs -------------------------------------------------------------------------------- /Regular/Models/RegexRuleParts/AnyDigit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Models/RegexRuleParts/AnyDigit.cs -------------------------------------------------------------------------------- /Regular/Models/RegexRuleParts/AnyLetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Models/RegexRuleParts/AnyLetter.cs -------------------------------------------------------------------------------- /Regular/Models/RegexRuleParts/CloseParenthesis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Models/RegexRuleParts/CloseParenthesis.cs -------------------------------------------------------------------------------- /Regular/Models/RegexRuleParts/CustomText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Models/RegexRuleParts/CustomText.cs -------------------------------------------------------------------------------- /Regular/Models/RegexRuleParts/FullStop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Models/RegexRuleParts/FullStop.cs -------------------------------------------------------------------------------- /Regular/Models/RegexRuleParts/Hyphen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Models/RegexRuleParts/Hyphen.cs -------------------------------------------------------------------------------- /Regular/Models/RegexRuleParts/OpenParenthesis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Models/RegexRuleParts/OpenParenthesis.cs -------------------------------------------------------------------------------- /Regular/Models/RegexRuleParts/OptionSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Models/RegexRuleParts/OptionSet.cs -------------------------------------------------------------------------------- /Regular/Models/RegexRuleParts/Underscore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Models/RegexRuleParts/Underscore.cs -------------------------------------------------------------------------------- /Regular/Models/RuleEditorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Models/RuleEditorInfo.cs -------------------------------------------------------------------------------- /Regular/Models/RuleValidationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Models/RuleValidationInfo.cs -------------------------------------------------------------------------------- /Regular/Models/RuleValidationOutput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Models/RuleValidationOutput.cs -------------------------------------------------------------------------------- /Regular/Properties/Annotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Properties/Annotations.cs -------------------------------------------------------------------------------- /Regular/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Regular/Regular.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Regular.csproj -------------------------------------------------------------------------------- /Regular/Regular.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Regular.csproj.DotSettings -------------------------------------------------------------------------------- /Regular/Regular.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Regular.csproj.user -------------------------------------------------------------------------------- /Regular/RegularApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/RegularApp.cs -------------------------------------------------------------------------------- /Regular/Resources/ExportRules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Resources/ExportRules.png -------------------------------------------------------------------------------- /Regular/Resources/ImportRules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Resources/ImportRules.png -------------------------------------------------------------------------------- /Regular/Resources/RegularFavicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Resources/RegularFavicon.png -------------------------------------------------------------------------------- /Regular/Resources/RegularStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Resources/RegularStyles.xaml -------------------------------------------------------------------------------- /Regular/Resources/RuleManager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Resources/RuleManager.png -------------------------------------------------------------------------------- /Regular/Resources/TransferRules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Resources/TransferRules.png -------------------------------------------------------------------------------- /Regular/RibbonLauncher/Enums/RegularToolGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/RibbonLauncher/Enums/RegularToolGroup.cs -------------------------------------------------------------------------------- /Regular/RibbonLauncher/Enums/RibbonButtonType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/RibbonLauncher/Enums/RibbonButtonType.cs -------------------------------------------------------------------------------- /Regular/RibbonLauncher/RegularRibbon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/RibbonLauncher/RegularRibbon.cs -------------------------------------------------------------------------------- /Regular/RibbonLauncher/RegularTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/RibbonLauncher/RegularTool.cs -------------------------------------------------------------------------------- /Regular/Services/DocumentCacheService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Services/DocumentCacheService.cs -------------------------------------------------------------------------------- /Regular/Services/RegexRuleCacheService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Services/RegexRuleCacheService.cs -------------------------------------------------------------------------------- /Regular/Tools/RuleManager/RuleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Tools/RuleManager/RuleManager.cs -------------------------------------------------------------------------------- /Regular/Tools/TransferRules/ExportRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Tools/TransferRules/ExportRules.cs -------------------------------------------------------------------------------- /Regular/Tools/TransferRules/ImportRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Tools/TransferRules/ImportRules.cs -------------------------------------------------------------------------------- /Regular/UI/ConfirmationDialog/Model/ConfirmationDialogInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/ConfirmationDialog/Model/ConfirmationDialogInfo.cs -------------------------------------------------------------------------------- /Regular/UI/ConfirmationDialog/View/ConfirmationDialogView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/ConfirmationDialog/View/ConfirmationDialogView.xaml -------------------------------------------------------------------------------- /Regular/UI/ConfirmationDialog/View/ConfirmationDialogView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/ConfirmationDialog/View/ConfirmationDialogView.xaml.cs -------------------------------------------------------------------------------- /Regular/UI/ConfirmationDialog/ViewModel/ConfirmationDialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/ConfirmationDialog/ViewModel/ConfirmationDialogViewModel.cs -------------------------------------------------------------------------------- /Regular/UI/DebugWindow/View/DebugWindowView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/DebugWindow/View/DebugWindowView.xaml -------------------------------------------------------------------------------- /Regular/UI/DebugWindow/View/DebugWindowView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/DebugWindow/View/DebugWindowView.xaml.cs -------------------------------------------------------------------------------- /Regular/UI/DebugWindow/ViewModel/DebugWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/DebugWindow/ViewModel/DebugWindowViewModel.cs -------------------------------------------------------------------------------- /Regular/UI/ImportRule/Commands/RenameAllCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/ImportRule/Commands/RenameAllCommand.cs -------------------------------------------------------------------------------- /Regular/UI/ImportRule/Commands/RenameRuleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/ImportRule/Commands/RenameRuleCommand.cs -------------------------------------------------------------------------------- /Regular/UI/ImportRule/Commands/ReplaceAllCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/ImportRule/Commands/ReplaceAllCommand.cs -------------------------------------------------------------------------------- /Regular/UI/ImportRule/Commands/ReplaceRuleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/ImportRule/Commands/ReplaceRuleCommand.cs -------------------------------------------------------------------------------- /Regular/UI/ImportRule/Commands/SkipAllCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/ImportRule/Commands/SkipAllCommand.cs -------------------------------------------------------------------------------- /Regular/UI/ImportRule/Commands/SkipRuleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/ImportRule/Commands/SkipRuleCommand.cs -------------------------------------------------------------------------------- /Regular/UI/ImportRule/Enums/OverrideMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/ImportRule/Enums/OverrideMode.cs -------------------------------------------------------------------------------- /Regular/UI/ImportRule/Model/ImportRuleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/ImportRule/Model/ImportRuleInfo.cs -------------------------------------------------------------------------------- /Regular/UI/ImportRule/View/ImportRuleView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/ImportRule/View/ImportRuleView.xaml -------------------------------------------------------------------------------- /Regular/UI/ImportRule/View/ImportRuleView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/ImportRule/View/ImportRuleView.xaml.cs -------------------------------------------------------------------------------- /Regular/UI/ImportRule/ViewModel/ImportRuleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/ImportRule/ViewModel/ImportRuleViewModel.cs -------------------------------------------------------------------------------- /Regular/UI/InfoWindow/View/InfoWindowView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/InfoWindow/View/InfoWindowView.xaml -------------------------------------------------------------------------------- /Regular/UI/InfoWindow/View/InfoWindowView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/InfoWindow/View/InfoWindowView.xaml.cs -------------------------------------------------------------------------------- /Regular/UI/InfoWindow/ViewModel/InfoWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/InfoWindow/ViewModel/InfoWindowViewModel.cs -------------------------------------------------------------------------------- /Regular/UI/NotifyPropertyChangedBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/NotifyPropertyChangedBase.cs -------------------------------------------------------------------------------- /Regular/UI/ObservableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/ObservableObject.cs -------------------------------------------------------------------------------- /Regular/UI/OptionSetEditor/View/OptionSetEditorView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/OptionSetEditor/View/OptionSetEditorView.xaml -------------------------------------------------------------------------------- /Regular/UI/OptionSetEditor/View/OptionSetEditorView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/OptionSetEditor/View/OptionSetEditorView.xaml.cs -------------------------------------------------------------------------------- /Regular/UI/OptionSetEditor/ViewModel/OptionSetEditorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/OptionSetEditor/ViewModel/OptionSetEditorViewModel.cs -------------------------------------------------------------------------------- /Regular/UI/RuleEditor/Commands/AddRulePartCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/RuleEditor/Commands/AddRulePartCommand.cs -------------------------------------------------------------------------------- /Regular/UI/RuleEditor/Commands/DeleteRulePartCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/RuleEditor/Commands/DeleteRulePartCommand.cs -------------------------------------------------------------------------------- /Regular/UI/RuleEditor/Commands/EditRulePartCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/RuleEditor/Commands/EditRulePartCommand.cs -------------------------------------------------------------------------------- /Regular/UI/RuleEditor/Commands/GenerateCompliantExampleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/RuleEditor/Commands/GenerateCompliantExampleCommand.cs -------------------------------------------------------------------------------- /Regular/UI/RuleEditor/Commands/MoveRulePartDownCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/RuleEditor/Commands/MoveRulePartDownCommand.cs -------------------------------------------------------------------------------- /Regular/UI/RuleEditor/Commands/MoveRulePartUpCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/RuleEditor/Commands/MoveRulePartUpCommand.cs -------------------------------------------------------------------------------- /Regular/UI/RuleEditor/Commands/SubmitRuleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/RuleEditor/Commands/SubmitRuleCommand.cs -------------------------------------------------------------------------------- /Regular/UI/RuleEditor/Commands/TriggerCategoryPanelCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/RuleEditor/Commands/TriggerCategoryPanelCommand.cs -------------------------------------------------------------------------------- /Regular/UI/RuleEditor/Commands/TriggerSelectAllCategoriesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/RuleEditor/Commands/TriggerSelectAllCategoriesCommand.cs -------------------------------------------------------------------------------- /Regular/UI/RuleEditor/Commands/TriggerSelectCategoryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/RuleEditor/Commands/TriggerSelectCategoryCommand.cs -------------------------------------------------------------------------------- /Regular/UI/RuleEditor/Commands/UpdateRegexStringCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/RuleEditor/Commands/UpdateRegexStringCommand.cs -------------------------------------------------------------------------------- /Regular/UI/RuleEditor/View/RuleEditorView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/RuleEditor/View/RuleEditorView.xaml -------------------------------------------------------------------------------- /Regular/UI/RuleEditor/View/RuleEditorView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/RuleEditor/View/RuleEditorView.xaml.cs -------------------------------------------------------------------------------- /Regular/UI/RuleEditor/ViewModel/RuleEditorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/RuleEditor/ViewModel/RuleEditorViewModel.cs -------------------------------------------------------------------------------- /Regular/UI/RuleManager/Commands/AddRuleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/RuleManager/Commands/AddRuleCommand.cs -------------------------------------------------------------------------------- /Regular/UI/RuleManager/Commands/DeleteRuleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/RuleManager/Commands/DeleteRuleCommand.cs -------------------------------------------------------------------------------- /Regular/UI/RuleManager/Commands/DuplicateRuleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/RuleManager/Commands/DuplicateRuleCommand.cs -------------------------------------------------------------------------------- /Regular/UI/RuleManager/Commands/EditRuleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/RuleManager/Commands/EditRuleCommand.cs -------------------------------------------------------------------------------- /Regular/UI/RuleManager/Commands/ExecuteRuleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/RuleManager/Commands/ExecuteRuleCommand.cs -------------------------------------------------------------------------------- /Regular/UI/RuleManager/Commands/ExportReportCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/RuleManager/Commands/ExportReportCommand.cs -------------------------------------------------------------------------------- /Regular/UI/RuleManager/Commands/MoveRuleDownCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/RuleManager/Commands/MoveRuleDownCommand.cs -------------------------------------------------------------------------------- /Regular/UI/RuleManager/Commands/MoveRuleUpCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/RuleManager/Commands/MoveRuleUpCommand.cs -------------------------------------------------------------------------------- /Regular/UI/RuleManager/View/RuleManagerView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/RuleManager/View/RuleManagerView.xaml -------------------------------------------------------------------------------- /Regular/UI/RuleManager/View/RuleManagerView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/RuleManager/View/RuleManagerView.xaml.cs -------------------------------------------------------------------------------- /Regular/UI/RuleManager/ViewModel/RuleManagerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/RuleManager/ViewModel/RuleManagerViewModel.cs -------------------------------------------------------------------------------- /Regular/UI/SelectElements/Commands/SelectElementsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/SelectElements/Commands/SelectElementsCommand.cs -------------------------------------------------------------------------------- /Regular/UI/SelectElements/Commands/TriggerSelectAllElementsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/SelectElements/Commands/TriggerSelectAllElementsCommand.cs -------------------------------------------------------------------------------- /Regular/UI/SelectElements/Commands/TriggerSelectElementCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/SelectElements/Commands/TriggerSelectElementCommand.cs -------------------------------------------------------------------------------- /Regular/UI/SelectElements/Model/SelectElementsInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/SelectElements/Model/SelectElementsInfo.cs -------------------------------------------------------------------------------- /Regular/UI/SelectElements/View/SelectElementsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/SelectElements/View/SelectElementsView.xaml -------------------------------------------------------------------------------- /Regular/UI/SelectElements/View/SelectElementsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/SelectElements/View/SelectElementsView.xaml.cs -------------------------------------------------------------------------------- /Regular/UI/SelectElements/ViewModel/SelectElementsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/SelectElements/ViewModel/SelectElementsViewModel.cs -------------------------------------------------------------------------------- /Regular/UI/SelectElementsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/UI/SelectElementsView.xaml.cs -------------------------------------------------------------------------------- /Regular/Utilities/BitmapUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Utilities/BitmapUtils.cs -------------------------------------------------------------------------------- /Regular/Utilities/CategoryUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Utilities/CategoryUtils.cs -------------------------------------------------------------------------------- /Regular/Utilities/DocumentGuidUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Utilities/DocumentGuidUtils.cs -------------------------------------------------------------------------------- /Regular/Utilities/EnumUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Utilities/EnumUtils.cs -------------------------------------------------------------------------------- /Regular/Utilities/ExtensibleStorageUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Utilities/ExtensibleStorageUtils.cs -------------------------------------------------------------------------------- /Regular/Utilities/IOUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Utilities/IOUtils.cs -------------------------------------------------------------------------------- /Regular/Utilities/InputValidationServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Utilities/InputValidationServices.cs -------------------------------------------------------------------------------- /Regular/Utilities/JSONFileUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Utilities/JSONFileUtils.cs -------------------------------------------------------------------------------- /Regular/Utilities/ParameterUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Utilities/ParameterUtils.cs -------------------------------------------------------------------------------- /Regular/Utilities/RegexAssemblyUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Utilities/RegexAssemblyUtils.cs -------------------------------------------------------------------------------- /Regular/Utilities/RuleExecutionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Utilities/RuleExecutionUtils.cs -------------------------------------------------------------------------------- /Regular/Utilities/SerializationUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Utilities/SerializationUtils.cs -------------------------------------------------------------------------------- /Regular/Utilities/SetUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Utilities/SetUtils.cs -------------------------------------------------------------------------------- /Regular/Utilities/StringUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Utilities/StringUtils.cs -------------------------------------------------------------------------------- /Regular/Utilities/VisualTreeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/Utilities/VisualTreeUtils.cs -------------------------------------------------------------------------------- /Regular/bin/x64/Rvt2018/Regular.Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/bin/x64/Rvt2018/Regular.Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Regular/bin/x64/Rvt2018/Regular.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/bin/x64/Rvt2018/Regular.dll -------------------------------------------------------------------------------- /Regular/bin/x64/Rvt2019/Regular.Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/bin/x64/Rvt2019/Regular.Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Regular/bin/x64/Rvt2019/Regular.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/bin/x64/Rvt2019/Regular.dll -------------------------------------------------------------------------------- /Regular/bin/x64/Rvt2020/Regular.Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/bin/x64/Rvt2020/Regular.Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Regular/bin/x64/Rvt2020/Regular.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/bin/x64/Rvt2020/Regular.dll -------------------------------------------------------------------------------- /Regular/bin/x64/Rvt2021/Regular.Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/bin/x64/Rvt2021/Regular.Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Regular/bin/x64/Rvt2021/Regular.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/bin/x64/Rvt2021/Regular.dll -------------------------------------------------------------------------------- /Regular/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverEGreen/Regular/HEAD/Regular/packages.config --------------------------------------------------------------------------------