├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── changelog.md └── src ├── .editorconfig ├── SharpYaml.Tests ├── DescriptorTests.cs ├── Dump.cs ├── EmitterTests.cs ├── InsertionQueueTests.cs ├── LookAheadBufferTests.cs ├── ParserTestHelper.cs ├── ParserTests.cs ├── PathTrieTest.cs ├── ScannerTestHelper.cs ├── ScannerTests.cs ├── SchemaTests.cs ├── Serialization │ ├── ExceptionWithNestedSerialization.cs │ ├── ObjectFactoryTests.cs │ ├── Samples.cs │ ├── SerializationTests.cs │ ├── SerializationTests2.cs │ ├── TracingVisitor.cs │ └── YamlStreamTests.cs ├── SharpYaml.Tests.csproj ├── StringHelper.cs ├── YamlNodeTest.cs ├── YamlNodeTrackerTest.cs ├── YamlTest.cs └── files │ ├── YamlReferenceCard.yaml │ ├── backreference.yaml │ ├── backwardsAlias.yaml │ ├── converter.yaml │ ├── convertible.yaml │ ├── dictionary.yaml │ ├── dictionaryExplicit.yaml │ ├── empty.yaml │ ├── explicitType.yaml │ ├── fail-backreference.yaml │ ├── forwardAlias.yaml │ ├── invalid-reference.yaml │ ├── list.yaml │ ├── listExplicit.yaml │ ├── listOfDictionaries.yaml │ ├── local-tags.yaml │ ├── namingConvention.yaml │ ├── sample.yaml │ ├── tags.yaml │ ├── test1.yaml │ ├── test10.yaml │ ├── test11.yaml │ ├── test12.yaml │ ├── test13.yaml │ ├── test14.yaml │ ├── test15.yaml │ ├── test2.yaml │ ├── test3.yaml │ ├── test4.yaml │ ├── test5.yaml │ ├── test6.yaml │ ├── test7.yaml │ ├── test8.yaml │ └── test9.yaml ├── SharpYaml.sln ├── SharpYaml.sln.DotSettings ├── SharpYaml ├── CharHelper.cs ├── CharacterAnalyzer.cs ├── Constants.cs ├── Emitter.cs ├── EmitterState.cs ├── EventReader.cs ├── Events │ ├── AnchorAlias.cs │ ├── DocumentEnd.cs │ ├── DocumentStart.cs │ ├── EventType.cs │ ├── MappingEnd.cs │ ├── MappingStart.cs │ ├── NodeEvent.cs │ ├── ParsingEvent.cs │ ├── Scalar.cs │ ├── SequenceEnd.cs │ ├── SequenceStart.cs │ ├── StreamEnd.cs │ └── StreamStart.cs ├── FakeList.cs ├── IEmitter.cs ├── ILookAheadBuffer.cs ├── IParser.cs ├── InsertionQueue.cs ├── LookAheadBuffer.cs ├── Mark.cs ├── MemoryParser.cs ├── Model │ ├── PathTrie.cs │ ├── YamlContainer.cs │ ├── YamlDocument.cs │ ├── YamlElement.cs │ ├── YamlMapping.cs │ ├── YamlNode.cs │ ├── YamlNodeEventEnumerator.cs │ ├── YamlNodeTracker.cs │ ├── YamlSequence.cs │ ├── YamlStream.cs │ └── YamlValue.cs ├── Parser.cs ├── ParserState.cs ├── Polyfills │ ├── IsExternalInit.cs │ └── NullableAttributes.cs ├── ScalarStyle.cs ├── Scanner.cs ├── Schemas │ ├── CoreSchema.cs │ ├── ExtendedSchema.cs │ ├── FailsafeSchema.cs │ ├── IYamlSchema.cs │ ├── JsonSchema.cs │ └── SchemaBase.cs ├── SemanticErrorException.cs ├── Serialization │ ├── AnchorEventEmitter.cs │ ├── AnchorNotFoundException.cs │ ├── AssemblyRegistry.cs │ ├── AttributeRegistry.cs │ ├── CamelCaseNamingConvention.cs │ ├── ChainedEventEmitter.cs │ ├── ChainedObjectFactory.cs │ ├── DefaultNamingConvention.cs │ ├── DefaultObjectFactory.cs │ ├── DescriptorCategory.cs │ ├── Descriptors │ │ ├── ArrayDescriptor.cs │ │ ├── CollectionDescriptor.cs │ │ ├── DefaultKeyComparer.cs │ │ ├── DictionaryDescriptor.cs │ │ ├── FieldDescriptor.cs │ │ ├── MemberDescriptorBase.cs │ │ ├── NullableDescriptor.cs │ │ ├── ObjectDescriptor.cs │ │ ├── PrimitiveDescriptor.cs │ │ ├── PropertyDescriptor.cs │ │ └── TypeDescriptorFactory.cs │ ├── DocumentLoadingState.cs │ ├── DuplicateAnchorException.cs │ ├── DynamicMemberDescriptorBase.cs │ ├── EmitterState.cs │ ├── EventInfo.cs │ ├── FlatNamingConvention.cs │ ├── IAttributeRegistry.cs │ ├── IEventEmitter.cs │ ├── IMemberDescriptor.cs │ ├── IMemberNamingConvention.cs │ ├── IObjectFactory.cs │ ├── IObjectSerializerBackend.cs │ ├── IOrderedDictionary.cs │ ├── ITagTypeRegistry.cs │ ├── ITagTypeResolver.cs │ ├── ITypeDescriptor.cs │ ├── ITypeDescriptorFactory.cs │ ├── IYamlSerializable.cs │ ├── IYamlSerializableFactory.cs │ ├── IYamlVisitor.cs │ ├── IdentityEqualityComparer.cs │ ├── JsonEventEmitter.cs │ ├── LambdaObjectFactory.cs │ ├── Logging │ │ ├── ILogger.cs │ │ └── LogLevel.cs │ ├── ObjectContext.cs │ ├── OrderedDictionary.cs │ ├── PascalNamingConvention.cs │ ├── Serializer.cs │ ├── SerializerContext.cs │ ├── SerializerContextSettings.cs │ ├── SerializerSettings.cs │ ├── Serializers │ │ ├── AnchorSerializer.cs │ │ ├── ArraySerializer.cs │ │ ├── ChainedSerializer.cs │ │ ├── CollectionSerializer.cs │ │ ├── DefaultObjectSerializerBackend.cs │ │ ├── DictionarySerializer.cs │ │ ├── ObjectSerializer.cs │ │ ├── PrimitiveSerializer.cs │ │ ├── RoutingSerializer.cs │ │ ├── ScalarSerializerBase.cs │ │ └── TagTypeSerializer.cs │ ├── WriterEventEmitter.cs │ ├── YamlAliasNode.cs │ ├── YamlDocument.cs │ ├── YamlIgnoreAttribute.cs │ ├── YamlMappingNode.cs │ ├── YamlMemberAttribute.cs │ ├── YamlNode.cs │ ├── YamlNodeIdentityEqualityComparer.cs │ ├── YamlRemapAttribute.cs │ ├── YamlScalarNode.cs │ ├── YamlSequenceNode.cs │ ├── YamlSerializableMethod.cs │ ├── YamlStream.cs │ ├── YamlStyleAttribute.cs │ ├── YamlTagAttribute.cs │ └── YamlVisitor.cs ├── SharpYaml.csproj ├── SharpYaml.csproj.DotSettings ├── SharpYaml.snk ├── SimpleKey.cs ├── StringLookAheadBuffer.cs ├── SyntaxErrorException.cs ├── TagDirectiveCollection.cs ├── Tokens │ ├── Anchor.cs │ ├── AnchorAlias.cs │ ├── BlockEnd.cs │ ├── BlockEntry.cs │ ├── BlockMappingStart.cs │ ├── BlockSequenceStart.cs │ ├── DocumentEnd.cs │ ├── DocumentStart.cs │ ├── FlowEntry.cs │ ├── FlowMappingEnd.cs │ ├── FlowMappingStart.cs │ ├── FlowSequenceEnd.cs │ ├── FlowSequenceStart.cs │ ├── Key.cs │ ├── Scalar.cs │ ├── StreamEnd.cs │ ├── StreamStart.cs │ ├── Tag.cs │ ├── TagDirective.cs │ ├── Token.cs │ ├── Value.cs │ └── VersionDirective.cs ├── TypeExtensions.cs ├── Version.cs ├── YamlException.cs └── YamlStyle.cs ├── dotnet-releaser.toml └── global.json /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/changelog.md -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/SharpYaml.Tests/DescriptorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/DescriptorTests.cs -------------------------------------------------------------------------------- /src/SharpYaml.Tests/Dump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/Dump.cs -------------------------------------------------------------------------------- /src/SharpYaml.Tests/EmitterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/EmitterTests.cs -------------------------------------------------------------------------------- /src/SharpYaml.Tests/InsertionQueueTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/InsertionQueueTests.cs -------------------------------------------------------------------------------- /src/SharpYaml.Tests/LookAheadBufferTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/LookAheadBufferTests.cs -------------------------------------------------------------------------------- /src/SharpYaml.Tests/ParserTestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/ParserTestHelper.cs -------------------------------------------------------------------------------- /src/SharpYaml.Tests/ParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/ParserTests.cs -------------------------------------------------------------------------------- /src/SharpYaml.Tests/PathTrieTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/PathTrieTest.cs -------------------------------------------------------------------------------- /src/SharpYaml.Tests/ScannerTestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/ScannerTestHelper.cs -------------------------------------------------------------------------------- /src/SharpYaml.Tests/ScannerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/ScannerTests.cs -------------------------------------------------------------------------------- /src/SharpYaml.Tests/SchemaTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/SchemaTests.cs -------------------------------------------------------------------------------- /src/SharpYaml.Tests/Serialization/ExceptionWithNestedSerialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/Serialization/ExceptionWithNestedSerialization.cs -------------------------------------------------------------------------------- /src/SharpYaml.Tests/Serialization/ObjectFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/Serialization/ObjectFactoryTests.cs -------------------------------------------------------------------------------- /src/SharpYaml.Tests/Serialization/Samples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/Serialization/Samples.cs -------------------------------------------------------------------------------- /src/SharpYaml.Tests/Serialization/SerializationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/Serialization/SerializationTests.cs -------------------------------------------------------------------------------- /src/SharpYaml.Tests/Serialization/SerializationTests2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/Serialization/SerializationTests2.cs -------------------------------------------------------------------------------- /src/SharpYaml.Tests/Serialization/TracingVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/Serialization/TracingVisitor.cs -------------------------------------------------------------------------------- /src/SharpYaml.Tests/Serialization/YamlStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/Serialization/YamlStreamTests.cs -------------------------------------------------------------------------------- /src/SharpYaml.Tests/SharpYaml.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/SharpYaml.Tests.csproj -------------------------------------------------------------------------------- /src/SharpYaml.Tests/StringHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/StringHelper.cs -------------------------------------------------------------------------------- /src/SharpYaml.Tests/YamlNodeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/YamlNodeTest.cs -------------------------------------------------------------------------------- /src/SharpYaml.Tests/YamlNodeTrackerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/YamlNodeTrackerTest.cs -------------------------------------------------------------------------------- /src/SharpYaml.Tests/YamlTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/YamlTest.cs -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/YamlReferenceCard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/files/YamlReferenceCard.yaml -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/backreference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/files/backreference.yaml -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/backwardsAlias.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/files/backwardsAlias.yaml -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/converter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/files/converter.yaml -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/convertible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/files/convertible.yaml -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/dictionary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/files/dictionary.yaml -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/dictionaryExplicit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/files/dictionaryExplicit.yaml -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/empty.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/explicitType.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/files/explicitType.yaml -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/fail-backreference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/files/fail-backreference.yaml -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/forwardAlias.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/files/forwardAlias.yaml -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/invalid-reference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/files/invalid-reference.yaml -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/files/list.yaml -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/listExplicit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/files/listExplicit.yaml -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/listOfDictionaries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/files/listOfDictionaries.yaml -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/local-tags.yaml: -------------------------------------------------------------------------------- 1 | --- !MyObject 2 | a: 1.0 3 | b: 42 4 | c: -7 5 | -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/namingConvention.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/files/namingConvention.yaml -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/files/sample.yaml -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/tags.yaml: -------------------------------------------------------------------------------- 1 | !!point 2 | X: 10 3 | Y: 20 4 | -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/test1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/files/test1.yaml -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/test10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/files/test10.yaml -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/test11.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/files/test11.yaml -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/test12.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/files/test12.yaml -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/test13.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/files/test13.yaml -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/test14.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/files/test14.yaml -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/test15.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/files/test15.yaml -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/test2.yaml: -------------------------------------------------------------------------------- 1 | 'a scalar' -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/test3.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 'a scalar' 3 | ... -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/test4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/files/test4.yaml -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/test5.yaml: -------------------------------------------------------------------------------- 1 | &A [ *A ] -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/test6.yaml: -------------------------------------------------------------------------------- 1 | !!float "3.14" # A good approximation. -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/test7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/files/test7.yaml -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/test8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/files/test8.yaml -------------------------------------------------------------------------------- /src/SharpYaml.Tests/files/test9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.Tests/files/test9.yaml -------------------------------------------------------------------------------- /src/SharpYaml.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.sln -------------------------------------------------------------------------------- /src/SharpYaml.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml.sln.DotSettings -------------------------------------------------------------------------------- /src/SharpYaml/CharHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/CharHelper.cs -------------------------------------------------------------------------------- /src/SharpYaml/CharacterAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/CharacterAnalyzer.cs -------------------------------------------------------------------------------- /src/SharpYaml/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Constants.cs -------------------------------------------------------------------------------- /src/SharpYaml/Emitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Emitter.cs -------------------------------------------------------------------------------- /src/SharpYaml/EmitterState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/EmitterState.cs -------------------------------------------------------------------------------- /src/SharpYaml/EventReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/EventReader.cs -------------------------------------------------------------------------------- /src/SharpYaml/Events/AnchorAlias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Events/AnchorAlias.cs -------------------------------------------------------------------------------- /src/SharpYaml/Events/DocumentEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Events/DocumentEnd.cs -------------------------------------------------------------------------------- /src/SharpYaml/Events/DocumentStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Events/DocumentStart.cs -------------------------------------------------------------------------------- /src/SharpYaml/Events/EventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Events/EventType.cs -------------------------------------------------------------------------------- /src/SharpYaml/Events/MappingEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Events/MappingEnd.cs -------------------------------------------------------------------------------- /src/SharpYaml/Events/MappingStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Events/MappingStart.cs -------------------------------------------------------------------------------- /src/SharpYaml/Events/NodeEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Events/NodeEvent.cs -------------------------------------------------------------------------------- /src/SharpYaml/Events/ParsingEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Events/ParsingEvent.cs -------------------------------------------------------------------------------- /src/SharpYaml/Events/Scalar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Events/Scalar.cs -------------------------------------------------------------------------------- /src/SharpYaml/Events/SequenceEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Events/SequenceEnd.cs -------------------------------------------------------------------------------- /src/SharpYaml/Events/SequenceStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Events/SequenceStart.cs -------------------------------------------------------------------------------- /src/SharpYaml/Events/StreamEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Events/StreamEnd.cs -------------------------------------------------------------------------------- /src/SharpYaml/Events/StreamStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Events/StreamStart.cs -------------------------------------------------------------------------------- /src/SharpYaml/FakeList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/FakeList.cs -------------------------------------------------------------------------------- /src/SharpYaml/IEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/IEmitter.cs -------------------------------------------------------------------------------- /src/SharpYaml/ILookAheadBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/ILookAheadBuffer.cs -------------------------------------------------------------------------------- /src/SharpYaml/IParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/IParser.cs -------------------------------------------------------------------------------- /src/SharpYaml/InsertionQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/InsertionQueue.cs -------------------------------------------------------------------------------- /src/SharpYaml/LookAheadBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/LookAheadBuffer.cs -------------------------------------------------------------------------------- /src/SharpYaml/Mark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Mark.cs -------------------------------------------------------------------------------- /src/SharpYaml/MemoryParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/MemoryParser.cs -------------------------------------------------------------------------------- /src/SharpYaml/Model/PathTrie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Model/PathTrie.cs -------------------------------------------------------------------------------- /src/SharpYaml/Model/YamlContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Model/YamlContainer.cs -------------------------------------------------------------------------------- /src/SharpYaml/Model/YamlDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Model/YamlDocument.cs -------------------------------------------------------------------------------- /src/SharpYaml/Model/YamlElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Model/YamlElement.cs -------------------------------------------------------------------------------- /src/SharpYaml/Model/YamlMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Model/YamlMapping.cs -------------------------------------------------------------------------------- /src/SharpYaml/Model/YamlNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Model/YamlNode.cs -------------------------------------------------------------------------------- /src/SharpYaml/Model/YamlNodeEventEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Model/YamlNodeEventEnumerator.cs -------------------------------------------------------------------------------- /src/SharpYaml/Model/YamlNodeTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Model/YamlNodeTracker.cs -------------------------------------------------------------------------------- /src/SharpYaml/Model/YamlSequence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Model/YamlSequence.cs -------------------------------------------------------------------------------- /src/SharpYaml/Model/YamlStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Model/YamlStream.cs -------------------------------------------------------------------------------- /src/SharpYaml/Model/YamlValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Model/YamlValue.cs -------------------------------------------------------------------------------- /src/SharpYaml/Parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Parser.cs -------------------------------------------------------------------------------- /src/SharpYaml/ParserState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/ParserState.cs -------------------------------------------------------------------------------- /src/SharpYaml/Polyfills/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Polyfills/IsExternalInit.cs -------------------------------------------------------------------------------- /src/SharpYaml/Polyfills/NullableAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Polyfills/NullableAttributes.cs -------------------------------------------------------------------------------- /src/SharpYaml/ScalarStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/ScalarStyle.cs -------------------------------------------------------------------------------- /src/SharpYaml/Scanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Scanner.cs -------------------------------------------------------------------------------- /src/SharpYaml/Schemas/CoreSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Schemas/CoreSchema.cs -------------------------------------------------------------------------------- /src/SharpYaml/Schemas/ExtendedSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Schemas/ExtendedSchema.cs -------------------------------------------------------------------------------- /src/SharpYaml/Schemas/FailsafeSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Schemas/FailsafeSchema.cs -------------------------------------------------------------------------------- /src/SharpYaml/Schemas/IYamlSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Schemas/IYamlSchema.cs -------------------------------------------------------------------------------- /src/SharpYaml/Schemas/JsonSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Schemas/JsonSchema.cs -------------------------------------------------------------------------------- /src/SharpYaml/Schemas/SchemaBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Schemas/SchemaBase.cs -------------------------------------------------------------------------------- /src/SharpYaml/SemanticErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/SemanticErrorException.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/AnchorEventEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/AnchorEventEmitter.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/AnchorNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/AnchorNotFoundException.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/AssemblyRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/AssemblyRegistry.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/AttributeRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/AttributeRegistry.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/CamelCaseNamingConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/CamelCaseNamingConvention.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/ChainedEventEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/ChainedEventEmitter.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/ChainedObjectFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/ChainedObjectFactory.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/DefaultNamingConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/DefaultNamingConvention.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/DefaultObjectFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/DefaultObjectFactory.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/DescriptorCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/DescriptorCategory.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/Descriptors/ArrayDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/Descriptors/ArrayDescriptor.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/Descriptors/CollectionDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/Descriptors/CollectionDescriptor.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/Descriptors/DefaultKeyComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/Descriptors/DefaultKeyComparer.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/Descriptors/DictionaryDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/Descriptors/DictionaryDescriptor.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/Descriptors/FieldDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/Descriptors/FieldDescriptor.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/Descriptors/MemberDescriptorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/Descriptors/MemberDescriptorBase.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/Descriptors/NullableDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/Descriptors/NullableDescriptor.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/Descriptors/ObjectDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/Descriptors/ObjectDescriptor.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/Descriptors/PrimitiveDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/Descriptors/PrimitiveDescriptor.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/Descriptors/PropertyDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/Descriptors/PropertyDescriptor.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/Descriptors/TypeDescriptorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/Descriptors/TypeDescriptorFactory.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/DocumentLoadingState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/DocumentLoadingState.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/DuplicateAnchorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/DuplicateAnchorException.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/DynamicMemberDescriptorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/DynamicMemberDescriptorBase.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/EmitterState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/EmitterState.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/EventInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/EventInfo.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/FlatNamingConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/FlatNamingConvention.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/IAttributeRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/IAttributeRegistry.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/IEventEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/IEventEmitter.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/IMemberDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/IMemberDescriptor.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/IMemberNamingConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/IMemberNamingConvention.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/IObjectFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/IObjectFactory.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/IObjectSerializerBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/IObjectSerializerBackend.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/IOrderedDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/IOrderedDictionary.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/ITagTypeRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/ITagTypeRegistry.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/ITagTypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/ITagTypeResolver.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/ITypeDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/ITypeDescriptor.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/ITypeDescriptorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/ITypeDescriptorFactory.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/IYamlSerializable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/IYamlSerializable.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/IYamlSerializableFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/IYamlSerializableFactory.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/IYamlVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/IYamlVisitor.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/IdentityEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/IdentityEqualityComparer.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/JsonEventEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/JsonEventEmitter.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/LambdaObjectFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/LambdaObjectFactory.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/Logging/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/Logging/ILogger.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/Logging/LogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/Logging/LogLevel.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/ObjectContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/ObjectContext.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/OrderedDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/OrderedDictionary.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/PascalNamingConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/PascalNamingConvention.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/Serializer.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/SerializerContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/SerializerContext.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/SerializerContextSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/SerializerContextSettings.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/SerializerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/SerializerSettings.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/Serializers/AnchorSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/Serializers/AnchorSerializer.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/Serializers/ArraySerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/Serializers/ArraySerializer.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/Serializers/ChainedSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/Serializers/ChainedSerializer.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/Serializers/CollectionSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/Serializers/CollectionSerializer.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/Serializers/DefaultObjectSerializerBackend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/Serializers/DefaultObjectSerializerBackend.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/Serializers/DictionarySerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/Serializers/DictionarySerializer.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/Serializers/ObjectSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/Serializers/ObjectSerializer.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/Serializers/PrimitiveSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/Serializers/PrimitiveSerializer.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/Serializers/RoutingSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/Serializers/RoutingSerializer.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/Serializers/ScalarSerializerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/Serializers/ScalarSerializerBase.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/Serializers/TagTypeSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/Serializers/TagTypeSerializer.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/WriterEventEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/WriterEventEmitter.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/YamlAliasNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/YamlAliasNode.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/YamlDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/YamlDocument.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/YamlIgnoreAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/YamlIgnoreAttribute.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/YamlMappingNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/YamlMappingNode.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/YamlMemberAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/YamlMemberAttribute.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/YamlNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/YamlNode.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/YamlNodeIdentityEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/YamlNodeIdentityEqualityComparer.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/YamlRemapAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/YamlRemapAttribute.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/YamlScalarNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/YamlScalarNode.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/YamlSequenceNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/YamlSequenceNode.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/YamlSerializableMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/YamlSerializableMethod.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/YamlStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/YamlStream.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/YamlStyleAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/YamlStyleAttribute.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/YamlTagAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/YamlTagAttribute.cs -------------------------------------------------------------------------------- /src/SharpYaml/Serialization/YamlVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Serialization/YamlVisitor.cs -------------------------------------------------------------------------------- /src/SharpYaml/SharpYaml.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/SharpYaml.csproj -------------------------------------------------------------------------------- /src/SharpYaml/SharpYaml.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/SharpYaml.csproj.DotSettings -------------------------------------------------------------------------------- /src/SharpYaml/SharpYaml.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/SharpYaml.snk -------------------------------------------------------------------------------- /src/SharpYaml/SimpleKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/SimpleKey.cs -------------------------------------------------------------------------------- /src/SharpYaml/StringLookAheadBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/StringLookAheadBuffer.cs -------------------------------------------------------------------------------- /src/SharpYaml/SyntaxErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/SyntaxErrorException.cs -------------------------------------------------------------------------------- /src/SharpYaml/TagDirectiveCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/TagDirectiveCollection.cs -------------------------------------------------------------------------------- /src/SharpYaml/Tokens/Anchor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Tokens/Anchor.cs -------------------------------------------------------------------------------- /src/SharpYaml/Tokens/AnchorAlias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Tokens/AnchorAlias.cs -------------------------------------------------------------------------------- /src/SharpYaml/Tokens/BlockEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Tokens/BlockEnd.cs -------------------------------------------------------------------------------- /src/SharpYaml/Tokens/BlockEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Tokens/BlockEntry.cs -------------------------------------------------------------------------------- /src/SharpYaml/Tokens/BlockMappingStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Tokens/BlockMappingStart.cs -------------------------------------------------------------------------------- /src/SharpYaml/Tokens/BlockSequenceStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Tokens/BlockSequenceStart.cs -------------------------------------------------------------------------------- /src/SharpYaml/Tokens/DocumentEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Tokens/DocumentEnd.cs -------------------------------------------------------------------------------- /src/SharpYaml/Tokens/DocumentStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Tokens/DocumentStart.cs -------------------------------------------------------------------------------- /src/SharpYaml/Tokens/FlowEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Tokens/FlowEntry.cs -------------------------------------------------------------------------------- /src/SharpYaml/Tokens/FlowMappingEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Tokens/FlowMappingEnd.cs -------------------------------------------------------------------------------- /src/SharpYaml/Tokens/FlowMappingStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Tokens/FlowMappingStart.cs -------------------------------------------------------------------------------- /src/SharpYaml/Tokens/FlowSequenceEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Tokens/FlowSequenceEnd.cs -------------------------------------------------------------------------------- /src/SharpYaml/Tokens/FlowSequenceStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Tokens/FlowSequenceStart.cs -------------------------------------------------------------------------------- /src/SharpYaml/Tokens/Key.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Tokens/Key.cs -------------------------------------------------------------------------------- /src/SharpYaml/Tokens/Scalar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Tokens/Scalar.cs -------------------------------------------------------------------------------- /src/SharpYaml/Tokens/StreamEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Tokens/StreamEnd.cs -------------------------------------------------------------------------------- /src/SharpYaml/Tokens/StreamStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Tokens/StreamStart.cs -------------------------------------------------------------------------------- /src/SharpYaml/Tokens/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Tokens/Tag.cs -------------------------------------------------------------------------------- /src/SharpYaml/Tokens/TagDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Tokens/TagDirective.cs -------------------------------------------------------------------------------- /src/SharpYaml/Tokens/Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Tokens/Token.cs -------------------------------------------------------------------------------- /src/SharpYaml/Tokens/Value.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Tokens/Value.cs -------------------------------------------------------------------------------- /src/SharpYaml/Tokens/VersionDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Tokens/VersionDirective.cs -------------------------------------------------------------------------------- /src/SharpYaml/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/TypeExtensions.cs -------------------------------------------------------------------------------- /src/SharpYaml/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/Version.cs -------------------------------------------------------------------------------- /src/SharpYaml/YamlException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/YamlException.cs -------------------------------------------------------------------------------- /src/SharpYaml/YamlStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/SharpYaml/YamlStyle.cs -------------------------------------------------------------------------------- /src/dotnet-releaser.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/dotnet-releaser.toml -------------------------------------------------------------------------------- /src/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xoofx/SharpYaml/HEAD/src/global.json --------------------------------------------------------------------------------