├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── pull_request_template.md └── workflows │ ├── create-release.yml │ ├── syntax-checker.yml │ └── test-build.yml ├── .gitignore ├── .gitmodules ├── CONTRIBUTING.md ├── Directory.Build.props ├── Directory.Packages.props ├── Dockerfile ├── Dockerfile.NonEnglish ├── GitVersion.yml ├── LICENSE-libyaml ├── LICENSE.txt ├── README.md ├── YamlDotNet.Analyzers.StaticGenerator ├── ClassObject.cs ├── EnumMappings.cs ├── File.cs ├── ObjectAccessorFileGenerator.cs ├── SerializableSyntaxReceiver.cs ├── StaticContextFile.cs ├── StaticObjectFactoryFile.cs ├── StaticPropertyDescriptorFile.cs ├── StaticTypeInspectorFile.cs ├── StaticTypeResolverFile.cs ├── SymbolCollectionExtensions.cs ├── SymbolExtensions.cs ├── TypeFactoryGenerator.cs └── YamlDotNet.Analyzers.StaticGenerator.csproj ├── YamlDotNet.Benchmark ├── BigFileBenchmark.cs ├── Program.cs ├── Resources │ ├── saltern.yml │ └── saltern.yml.gz ├── SerializationBenchmarks.cs ├── YamlDotNet.Benchmark.csproj └── YamlStreamBenchmark.cs ├── YamlDotNet.Core7AoTCompileTest.Model ├── ExternalModel.cs └── YamlDotNet.Core7AoTCompileTest.Model.csproj ├── YamlDotNet.Core7AoTCompileTest ├── Program.cs ├── StaticAoTContext.cs └── YamlDotNet.Core7AoTCompileTest.csproj ├── YamlDotNet.Fsharp.Test ├── DeserializerTests.fs ├── SerializerTests.fs ├── StringExtensions.fs └── YamlDotNet.Fsharp.Test.fsproj ├── YamlDotNet.Samples.Fsharp ├── DeserializeObjectGraph.fs └── YamlDotNet.Samples.Fsharp.fsproj ├── YamlDotNet.Samples ├── ConvertYamlToJson.cs ├── DeserializeGenericObject.cs ├── DeserializeObjectGraph.cs ├── DeserializingMultipleDocuments.cs ├── Helpers │ ├── SampleAttribute.cs │ └── TestOutputHelperExtensions.cs ├── LoadingAYamlStream.cs ├── SerializeObjectGraph.cs ├── UseTypeConverters.cs ├── ValidatingDuringDeserialization.cs └── YamlDotNet.Samples.csproj ├── YamlDotNet.Test ├── Analyzers │ └── StaticGenerator │ │ ├── ObjectTests.cs │ │ ├── RootCollectionTests.cs │ │ ├── StaticAoTContext.cs │ │ └── StructTests.cs ├── Core │ ├── EmitterTests.cs │ ├── EmitterTestsHelper.cs │ ├── EventsHelper.cs │ ├── InsertionQueueTests.cs │ ├── LookAheadBufferTests.cs │ ├── MarkCursorTests.cs │ ├── ParserTests.cs │ ├── ScannerTests.cs │ ├── TokenHelper.cs │ └── YamlExceptionTests.cs ├── EnumerableExtensions.cs ├── GlobalSuppressions.cs ├── Helpers │ ├── OrderedDictionaryTests.cs │ └── PortabilityTests.cs ├── RepresentationModel │ └── YamlStreamTests.cs ├── Serialization │ ├── BufferedDeserialization │ │ ├── KeyValueTypeDiscriminatorTests.cs │ │ ├── TypeDiscriminatingNodeDeserializerTests.cs │ │ └── UniqueKeyTypeDiscriminatorTests.cs │ ├── ComplexYamlTypeConverterTests.cs │ ├── DateOnlyConverterTests.cs │ ├── DateTime8601ConverterTests.cs │ ├── DateTimeConverterTests.cs │ ├── DateTimeOffsetConverterTests.cs │ ├── DeserializerTest.cs │ ├── EmitDefaultValuesTests.cs │ ├── ForcedPlainStyleTests.cs │ ├── GenericTestDictionary.cs │ ├── GenericTestList.cs │ ├── HiddenPropertyTests.cs │ ├── MergingParserTests.cs │ ├── NamingConventionTests.cs │ ├── ObjectFactoryTests.cs │ ├── PrivateConstructorTests.cs │ ├── RepresentationModelSerializationTests.cs │ ├── SerializationTestHelper.cs │ ├── SerializationTests.cs │ ├── TimeOnlyConverterTests.cs │ ├── TypeConverterAttributeTests.cs │ ├── TypeConverterTests.cs │ └── YamlCommentTests.cs ├── Spec │ ├── ParserSpecTests.cs │ ├── SerializerSpecTests.cs │ └── SpecTestData.cs ├── StringExtensions.cs ├── Yaml.cs ├── YamlDotNet.Test.csproj ├── YamlTests.cs ├── files │ ├── 01-directives.yaml │ ├── 02-scalar-in-imp-doc.yaml │ ├── 03-scalar-in-exp-doc.yaml │ ├── 04-scalars-in-multi-docs.yaml │ ├── 05-circular-sequence.yaml │ ├── 06-float-tag.yaml │ ├── 07-scalar-styles.yaml │ ├── 08-flow-sequence.yaml │ ├── 09-flow-mapping.yaml │ ├── 10-mixed-nodes-in-sequence.yaml │ ├── 11-mixed-nodes-in-mapping.yaml │ ├── 12-compact-sequence.yaml │ ├── 13-compact-mapping.yaml │ ├── 14-mapping-wo-indent.yaml │ ├── anchors-overwriting.yaml │ ├── backreference.yaml │ ├── backwards-alias.yaml │ ├── convertible.template │ ├── dictionary-explicit.yaml │ ├── dictionary.yaml │ ├── explicit-type.template │ ├── fail-backreference.yaml │ ├── forward-alias.yaml │ ├── guid.yaml │ ├── invalid-reference.yaml │ ├── list-explicit.yaml │ ├── list-of-dictionaries.yaml │ ├── list.yaml │ ├── local-tags.yaml │ ├── multi-doc-tag.yaml │ ├── ordered-properties.yaml │ ├── tags.yaml │ └── unicode-32bits-escape.yaml ├── xunit.runner.linux.json └── xunit.runner.windows.json ├── YamlDotNet.sln ├── YamlDotNet.snk ├── YamlDotNet ├── Core │ ├── AnchorName.cs │ ├── AnchorNotFoundException.cs │ ├── CharacterAnalyzer.cs │ ├── Constants.cs │ ├── Cursor.cs │ ├── Emitter.cs │ ├── EmitterSettings.cs │ ├── EmitterState.cs │ ├── Events │ │ ├── AnchorAlias.cs │ │ ├── Comment.cs │ │ ├── DocumentEnd.cs │ │ ├── DocumentStart.cs │ │ ├── EventType.cs │ │ ├── IParsingEventVisitor.cs │ │ ├── MappingEnd.cs │ │ ├── MappingStart.cs │ │ ├── MappingStyle.cs │ │ ├── NodeEvent.cs │ │ ├── ParsingEvent.cs │ │ ├── Scalar.cs │ │ ├── SequenceEnd.cs │ │ ├── SequenceStart.cs │ │ ├── SequenceStyle.cs │ │ ├── StreamEnd.cs │ │ └── StreamStart.cs │ ├── ForwardAnchorNotSupportedException.cs │ ├── HashCode.cs │ ├── IEmitter.cs │ ├── ILookAheadBuffer.cs │ ├── IParser.cs │ ├── IScanner.cs │ ├── InsertionQueue.cs │ ├── LookAheadBuffer.cs │ ├── Mark.cs │ ├── MaximumRecursionLevelReachedException.cs │ ├── MergingParser.cs │ ├── ObjectPool │ │ ├── DefaultObjectPool.cs │ │ ├── DefaultPooledObjectPolicy.cs │ │ ├── IPooledObjectPolicy.cs │ │ ├── IResettable.cs │ │ ├── ObjectPool.cs │ │ ├── StringBuilderPool.cs │ │ ├── StringBuilderPooledObjectPolicy.cs │ │ └── StringLookAheadBufferPool.cs │ ├── Parser.cs │ ├── ParserExtensions.cs │ ├── ParserState.cs │ ├── RecursionLevel.cs │ ├── ScalarStyle.cs │ ├── Scanner.cs │ ├── SemanticErrorException.cs │ ├── SimpleKey.cs │ ├── StringLookAheadBuffer.cs │ ├── SyntaxErrorException.cs │ ├── TagDirectiveCollection.cs │ ├── TagName.cs │ ├── Tokens │ │ ├── Anchor.cs │ │ ├── AnchorAlias.cs │ │ ├── BlockEnd.cs │ │ ├── BlockEntry.cs │ │ ├── BlockMappingStart.cs │ │ ├── BlockSequenceStart.cs │ │ ├── Comment.cs │ │ ├── DocumentEnd.cs │ │ ├── DocumentStart.cs │ │ ├── Error.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 │ ├── Version.cs │ └── YamlException.cs ├── CultureInfoAdapter.cs ├── Helpers │ ├── DefaultFsharpHelper.cs │ ├── DictionaryExtensions.cs │ ├── ExpressionExtensions.cs │ ├── FsharpHelper.cs │ ├── GenericCollectionToNonGenericAdapter.cs │ ├── GenericDictionaryToNonGenericAdapter.cs │ ├── IFsharpHelper.cs │ ├── IOrderedDictionary.cs │ ├── NullFsharpHelper.cs │ ├── NumberExtensions.cs │ ├── OrderedDictionary.cs │ ├── Polyfills.cs │ ├── ReadOnlyCollectionExtensions.cs │ └── ThrowHelper.cs ├── Portability │ └── readme.txt ├── Properties │ ├── AssemblyInfo.template │ └── CustomAssemblyInfo.cs ├── PropertyInfoExtensions.cs ├── ReflectionExtensions.cs ├── RepresentationModel │ ├── DocumentLoadingState.cs │ ├── EmitterState.cs │ ├── IYamlVisitor.cs │ ├── LibYamlEventStream.cs │ ├── YamlAliasNode.cs │ ├── YamlDocument.cs │ ├── YamlMappingNode.cs │ ├── YamlNode.cs │ ├── YamlNodeIdentityEqualityComparer.cs │ ├── YamlNodeType.cs │ ├── YamlScalarNode.cs │ ├── YamlSequenceNode.cs │ ├── YamlStream.cs │ ├── YamlVisitor.cs │ └── YamlVisitorBase.cs ├── Serialization │ ├── BufferedDeserialization │ │ ├── ITypeDiscriminatingNodeDeserializerOptions.cs │ │ ├── ParserBuffer.cs │ │ ├── TypeDiscriminatingNodeDeserializer.cs │ │ ├── TypeDiscriminatingNodeDeserializerOptions.cs │ │ └── TypeDiscriminators │ │ │ ├── IValueTypeDiscriminator.cs │ │ │ ├── KeyValueTypeDiscriminator.cs │ │ │ └── UniqueKeyTypeDiscriminator.cs │ ├── BuilderSkeleton.cs │ ├── Callbacks │ │ ├── OnDeserializedAttribute.cs │ │ ├── OnDeserializingAttribute.cs │ │ ├── OnSerializedAttribute.cs │ │ └── OnSerializingAttribute.cs │ ├── Converters │ │ ├── DateOnlyConverter.cs │ │ ├── DateTime8601Converter.cs │ │ ├── DateTimeConverter.cs │ │ ├── DateTimeOffsetConverter.cs │ │ ├── GuidConverter.cs │ │ ├── SystemTypeConverter.cs │ │ └── TimeOnlyConverter.cs │ ├── DefaultValuesHandling.cs │ ├── Deserializer.cs │ ├── DeserializerBuilder.cs │ ├── EmissionPhaseObjectGraphVisitorArgs.cs │ ├── EventEmitters │ │ ├── ChainedEventEmitter.cs │ │ ├── JsonEventEmitter.cs │ │ ├── TypeAssigningEventEmitter.cs │ │ └── WriterEventEmitter.cs │ ├── EventInfo.cs │ ├── IAliasProvider.cs │ ├── IDeserializer.cs │ ├── IEventEmitter.cs │ ├── INamingConvention.cs │ ├── INodeDeserializer.cs │ ├── INodeTypeResolver.cs │ ├── IObjectAccessor.cs │ ├── IObjectDescriptor.cs │ ├── IObjectFactory.cs │ ├── IObjectGraphTraversalStrategy.cs │ ├── IObjectGraphVisitor.cs │ ├── IPropertyDescriptor.cs │ ├── IRegistrationLocationSelectionSyntax.cs │ ├── ISerializer.cs │ ├── ITypeInspector.cs │ ├── ITypeResolver.cs │ ├── IValueDeserializer.cs │ ├── IValuePromise.cs │ ├── IValueSerializer.cs │ ├── IYamlConvertible.cs │ ├── IYamlSerializable.cs │ ├── IYamlTypeConverter.cs │ ├── LazyComponentRegistrationList.cs │ ├── LazyComponentRegistrationListExtensions.cs │ ├── NamingConventions │ │ ├── CamelCaseNamingConvention.cs │ │ ├── HyphenatedNamingConvention.cs │ │ ├── LowerCaseNamingConvention.cs │ │ ├── NullNamingConvention.cs │ │ ├── PascalCaseNamingConvention.cs │ │ └── UnderscoredNamingConvention.cs │ ├── NodeDeserializers │ │ ├── ArrayNodeDeserializer.cs │ │ ├── CollectionDeserializer.cs │ │ ├── CollectionNodeDeserializer.cs │ │ ├── DictionaryDeserializer.cs │ │ ├── DictionaryNodeDeserializer.cs │ │ ├── EnumerableNodeDeserializer.cs │ │ ├── FsharpListNodeDeserializer.cs │ │ ├── NullNodeDeserializer.cs │ │ ├── ObjectNodeDeserializer.cs │ │ ├── ScalarNodeDeserializer.cs │ │ ├── StaticArrayNodeDeserializer.cs │ │ ├── StaticCollectionNodeDeserializer.cs │ │ ├── StaticDictionaryNodeDeserializer.cs │ │ ├── TypeConverterNodeDeserializer.cs │ │ ├── YamlConvertibleNodeDeserializer.cs │ │ └── YamlSerializableNodeDeserializer.cs │ ├── NodeTypeResolvers │ │ ├── DefaultContainersNodeTypeResolver.cs │ │ ├── MappingNodeTypeResolver.cs │ │ ├── RejectUnknownTagsNodeTypeResolver.cs │ │ ├── TagNodeTypeResolver.cs │ │ ├── TypeNameInTagNodeTypeResolver.cs │ │ ├── YamlConvertibleTypeResolver.cs │ │ └── YamlSerializableTypeResolver.cs │ ├── Nothing.cs │ ├── ObjectDescriptor.cs │ ├── ObjectFactories │ │ ├── DefaultObjectFactory.cs │ │ ├── LambdaObjectFactory.cs │ │ ├── ObjectFactoryBase.cs │ │ └── StaticObjectFactory.cs │ ├── ObjectGraphTraversalStrategies │ │ ├── FullObjectGraphTraversalStrategy.cs │ │ └── RoundtripObjectGraphTraversalStrategy.cs │ ├── ObjectGraphTraversalStrategyFactory.cs │ ├── ObjectGraphVisitors │ │ ├── AnchorAssigner.cs │ │ ├── AnchorAssigningObjectGraphVisitor.cs │ │ ├── ChainedObjectGraphVisitor.cs │ │ ├── CommentsObjectGraphVisitor.cs │ │ ├── CustomSerializationObjectGraphVisitor.cs │ │ ├── DefaultExclusiveObjectGraphVisitor.cs │ │ ├── DefaultValuesObjectGraphVisitor.cs │ │ ├── EmittingObjectGraphVisitor.cs │ │ └── PreProcessingPhaseObjectGraphVisitorSkeleton.cs │ ├── PropertyDescriptor.cs │ ├── Schemas │ │ └── FailsafeSchema.cs │ ├── Serializer.cs │ ├── SerializerBuilder.cs │ ├── Settings.cs │ ├── StaticBuilderSkeleton.cs │ ├── StaticContext.cs │ ├── StaticDeserializerBuilder.cs │ ├── StaticSerializerBuilder.cs │ ├── StreamFragment.cs │ ├── TagMappings.cs │ ├── TypeInspectors │ │ ├── CachedTypeInspector.cs │ │ ├── CompositeTypeInspector.cs │ │ ├── NamingConventionTypeInspector.cs │ │ ├── ReadableAndWritablePropertiesTypeInspector.cs │ │ ├── ReadableFieldsTypeInspector.cs │ │ ├── ReadablePropertiesTypeInspector.cs │ │ ├── ReflectionTypeInspector.cs │ │ ├── TypeInspectorSkeleton.cs │ │ └── WritablePropertiesTypeInspector.cs │ ├── TypeResolvers │ │ ├── DynamicTypeResolver.cs │ │ └── StaticTypeResolver.cs │ ├── Utilities │ │ ├── IPostDeserializationCallback.cs │ │ ├── ITypeConverter.cs │ │ ├── NullTypeConverter.cs │ │ ├── ObjectAnchorCollection.cs │ │ ├── ReflectionTypeConverter.cs │ │ ├── SerializerState.cs │ │ ├── StringExtensions.cs │ │ ├── TypeConverter.cs │ │ └── TypeConverterCache.cs │ ├── ValueDeserializers │ │ ├── AliasValueDeserializer.cs │ │ └── NodeValueDeserializer.cs │ ├── YamlAttributeOverrides.cs │ ├── YamlAttributeOverridesInspector.cs │ ├── YamlAttributesTypeInspector.cs │ ├── YamlConverterAttribute.cs │ ├── YamlFormatter.cs │ ├── YamlIgnoreAttribute.cs │ ├── YamlMemberAttribute.cs │ ├── YamlSerializable.cs │ └── YamlStaticContextAttribute.cs ├── StandardRegexOptions.cs └── YamlDotNet.csproj ├── appveyor.yml ├── docker-build.sh ├── tools ├── build │ ├── AutoNumberToStringConverter.cs │ ├── BuildDefinition.cs │ ├── GitHubApiModels.cs │ ├── Program.cs │ ├── TwitterProvider.cs │ ├── build.csproj │ └── build.sln ├── parsers │ ├── build.ps1 │ ├── perl-yaml-pp │ │ ├── Dockerfile │ │ └── parse.pl │ ├── python │ │ └── Dockerfile │ └── reference │ │ ├── Dockerfile │ │ └── run.sh └── syntax-checker │ ├── Dockerfile │ ├── build.cmd │ └── check-syntax.ps1 ├── yamldotnet.png └── yamldotnet.xcf /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [EdwardCooke] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.github/workflows/syntax-checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/.github/workflows/syntax-checker.yml -------------------------------------------------------------------------------- /.github/workflows/test-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/.github/workflows/test-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/.gitmodules -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.NonEnglish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/Dockerfile.NonEnglish -------------------------------------------------------------------------------- /GitVersion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/GitVersion.yml -------------------------------------------------------------------------------- /LICENSE-libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/LICENSE-libyaml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/README.md -------------------------------------------------------------------------------- /YamlDotNet.Analyzers.StaticGenerator/ClassObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Analyzers.StaticGenerator/ClassObject.cs -------------------------------------------------------------------------------- /YamlDotNet.Analyzers.StaticGenerator/EnumMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Analyzers.StaticGenerator/EnumMappings.cs -------------------------------------------------------------------------------- /YamlDotNet.Analyzers.StaticGenerator/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Analyzers.StaticGenerator/File.cs -------------------------------------------------------------------------------- /YamlDotNet.Analyzers.StaticGenerator/ObjectAccessorFileGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Analyzers.StaticGenerator/ObjectAccessorFileGenerator.cs -------------------------------------------------------------------------------- /YamlDotNet.Analyzers.StaticGenerator/SerializableSyntaxReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Analyzers.StaticGenerator/SerializableSyntaxReceiver.cs -------------------------------------------------------------------------------- /YamlDotNet.Analyzers.StaticGenerator/StaticContextFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Analyzers.StaticGenerator/StaticContextFile.cs -------------------------------------------------------------------------------- /YamlDotNet.Analyzers.StaticGenerator/StaticObjectFactoryFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Analyzers.StaticGenerator/StaticObjectFactoryFile.cs -------------------------------------------------------------------------------- /YamlDotNet.Analyzers.StaticGenerator/StaticPropertyDescriptorFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Analyzers.StaticGenerator/StaticPropertyDescriptorFile.cs -------------------------------------------------------------------------------- /YamlDotNet.Analyzers.StaticGenerator/StaticTypeInspectorFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Analyzers.StaticGenerator/StaticTypeInspectorFile.cs -------------------------------------------------------------------------------- /YamlDotNet.Analyzers.StaticGenerator/StaticTypeResolverFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Analyzers.StaticGenerator/StaticTypeResolverFile.cs -------------------------------------------------------------------------------- /YamlDotNet.Analyzers.StaticGenerator/SymbolCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Analyzers.StaticGenerator/SymbolCollectionExtensions.cs -------------------------------------------------------------------------------- /YamlDotNet.Analyzers.StaticGenerator/SymbolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Analyzers.StaticGenerator/SymbolExtensions.cs -------------------------------------------------------------------------------- /YamlDotNet.Analyzers.StaticGenerator/TypeFactoryGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Analyzers.StaticGenerator/TypeFactoryGenerator.cs -------------------------------------------------------------------------------- /YamlDotNet.Analyzers.StaticGenerator/YamlDotNet.Analyzers.StaticGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Analyzers.StaticGenerator/YamlDotNet.Analyzers.StaticGenerator.csproj -------------------------------------------------------------------------------- /YamlDotNet.Benchmark/BigFileBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Benchmark/BigFileBenchmark.cs -------------------------------------------------------------------------------- /YamlDotNet.Benchmark/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Benchmark/Program.cs -------------------------------------------------------------------------------- /YamlDotNet.Benchmark/Resources/saltern.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Benchmark/Resources/saltern.yml -------------------------------------------------------------------------------- /YamlDotNet.Benchmark/Resources/saltern.yml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Benchmark/Resources/saltern.yml.gz -------------------------------------------------------------------------------- /YamlDotNet.Benchmark/SerializationBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Benchmark/SerializationBenchmarks.cs -------------------------------------------------------------------------------- /YamlDotNet.Benchmark/YamlDotNet.Benchmark.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Benchmark/YamlDotNet.Benchmark.csproj -------------------------------------------------------------------------------- /YamlDotNet.Benchmark/YamlStreamBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Benchmark/YamlStreamBenchmark.cs -------------------------------------------------------------------------------- /YamlDotNet.Core7AoTCompileTest.Model/ExternalModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Core7AoTCompileTest.Model/ExternalModel.cs -------------------------------------------------------------------------------- /YamlDotNet.Core7AoTCompileTest.Model/YamlDotNet.Core7AoTCompileTest.Model.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Core7AoTCompileTest.Model/YamlDotNet.Core7AoTCompileTest.Model.csproj -------------------------------------------------------------------------------- /YamlDotNet.Core7AoTCompileTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Core7AoTCompileTest/Program.cs -------------------------------------------------------------------------------- /YamlDotNet.Core7AoTCompileTest/StaticAoTContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Core7AoTCompileTest/StaticAoTContext.cs -------------------------------------------------------------------------------- /YamlDotNet.Core7AoTCompileTest/YamlDotNet.Core7AoTCompileTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Core7AoTCompileTest/YamlDotNet.Core7AoTCompileTest.csproj -------------------------------------------------------------------------------- /YamlDotNet.Fsharp.Test/DeserializerTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Fsharp.Test/DeserializerTests.fs -------------------------------------------------------------------------------- /YamlDotNet.Fsharp.Test/SerializerTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Fsharp.Test/SerializerTests.fs -------------------------------------------------------------------------------- /YamlDotNet.Fsharp.Test/StringExtensions.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Fsharp.Test/StringExtensions.fs -------------------------------------------------------------------------------- /YamlDotNet.Fsharp.Test/YamlDotNet.Fsharp.Test.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Fsharp.Test/YamlDotNet.Fsharp.Test.fsproj -------------------------------------------------------------------------------- /YamlDotNet.Samples.Fsharp/DeserializeObjectGraph.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Samples.Fsharp/DeserializeObjectGraph.fs -------------------------------------------------------------------------------- /YamlDotNet.Samples.Fsharp/YamlDotNet.Samples.Fsharp.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Samples.Fsharp/YamlDotNet.Samples.Fsharp.fsproj -------------------------------------------------------------------------------- /YamlDotNet.Samples/ConvertYamlToJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Samples/ConvertYamlToJson.cs -------------------------------------------------------------------------------- /YamlDotNet.Samples/DeserializeGenericObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Samples/DeserializeGenericObject.cs -------------------------------------------------------------------------------- /YamlDotNet.Samples/DeserializeObjectGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Samples/DeserializeObjectGraph.cs -------------------------------------------------------------------------------- /YamlDotNet.Samples/DeserializingMultipleDocuments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Samples/DeserializingMultipleDocuments.cs -------------------------------------------------------------------------------- /YamlDotNet.Samples/Helpers/SampleAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Samples/Helpers/SampleAttribute.cs -------------------------------------------------------------------------------- /YamlDotNet.Samples/Helpers/TestOutputHelperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Samples/Helpers/TestOutputHelperExtensions.cs -------------------------------------------------------------------------------- /YamlDotNet.Samples/LoadingAYamlStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Samples/LoadingAYamlStream.cs -------------------------------------------------------------------------------- /YamlDotNet.Samples/SerializeObjectGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Samples/SerializeObjectGraph.cs -------------------------------------------------------------------------------- /YamlDotNet.Samples/UseTypeConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Samples/UseTypeConverters.cs -------------------------------------------------------------------------------- /YamlDotNet.Samples/ValidatingDuringDeserialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Samples/ValidatingDuringDeserialization.cs -------------------------------------------------------------------------------- /YamlDotNet.Samples/YamlDotNet.Samples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Samples/YamlDotNet.Samples.csproj -------------------------------------------------------------------------------- /YamlDotNet.Test/Analyzers/StaticGenerator/ObjectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Analyzers/StaticGenerator/ObjectTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Analyzers/StaticGenerator/RootCollectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Analyzers/StaticGenerator/RootCollectionTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Analyzers/StaticGenerator/StaticAoTContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Analyzers/StaticGenerator/StaticAoTContext.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Analyzers/StaticGenerator/StructTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Analyzers/StaticGenerator/StructTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Core/EmitterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Core/EmitterTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Core/EmitterTestsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Core/EmitterTestsHelper.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Core/EventsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Core/EventsHelper.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Core/InsertionQueueTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Core/InsertionQueueTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Core/LookAheadBufferTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Core/LookAheadBufferTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Core/MarkCursorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Core/MarkCursorTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Core/ParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Core/ParserTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Core/ScannerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Core/ScannerTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Core/TokenHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Core/TokenHelper.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Core/YamlExceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Core/YamlExceptionTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/EnumerableExtensions.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/GlobalSuppressions.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Helpers/OrderedDictionaryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Helpers/OrderedDictionaryTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Helpers/PortabilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Helpers/PortabilityTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/RepresentationModel/YamlStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/RepresentationModel/YamlStreamTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Serialization/BufferedDeserialization/KeyValueTypeDiscriminatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Serialization/BufferedDeserialization/KeyValueTypeDiscriminatorTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Serialization/BufferedDeserialization/TypeDiscriminatingNodeDeserializerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Serialization/BufferedDeserialization/TypeDiscriminatingNodeDeserializerTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Serialization/BufferedDeserialization/UniqueKeyTypeDiscriminatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Serialization/BufferedDeserialization/UniqueKeyTypeDiscriminatorTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Serialization/ComplexYamlTypeConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Serialization/ComplexYamlTypeConverterTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Serialization/DateOnlyConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Serialization/DateOnlyConverterTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Serialization/DateTime8601ConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Serialization/DateTime8601ConverterTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Serialization/DateTimeConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Serialization/DateTimeConverterTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Serialization/DateTimeOffsetConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Serialization/DateTimeOffsetConverterTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Serialization/DeserializerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Serialization/DeserializerTest.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Serialization/EmitDefaultValuesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Serialization/EmitDefaultValuesTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Serialization/ForcedPlainStyleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Serialization/ForcedPlainStyleTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Serialization/GenericTestDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Serialization/GenericTestDictionary.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Serialization/GenericTestList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Serialization/GenericTestList.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Serialization/HiddenPropertyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Serialization/HiddenPropertyTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Serialization/MergingParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Serialization/MergingParserTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Serialization/NamingConventionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Serialization/NamingConventionTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Serialization/ObjectFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Serialization/ObjectFactoryTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Serialization/PrivateConstructorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Serialization/PrivateConstructorTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Serialization/RepresentationModelSerializationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Serialization/RepresentationModelSerializationTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Serialization/SerializationTestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Serialization/SerializationTestHelper.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Serialization/SerializationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Serialization/SerializationTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Serialization/TimeOnlyConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Serialization/TimeOnlyConverterTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Serialization/TypeConverterAttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Serialization/TypeConverterAttributeTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Serialization/TypeConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Serialization/TypeConverterTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Serialization/YamlCommentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Serialization/YamlCommentTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Spec/ParserSpecTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Spec/ParserSpecTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Spec/SerializerSpecTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Spec/SerializerSpecTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Spec/SpecTestData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Spec/SpecTestData.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/StringExtensions.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/Yaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/Yaml.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/YamlDotNet.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/YamlDotNet.Test.csproj -------------------------------------------------------------------------------- /YamlDotNet.Test/YamlTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/YamlTests.cs -------------------------------------------------------------------------------- /YamlDotNet.Test/files/01-directives.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/files/01-directives.yaml -------------------------------------------------------------------------------- /YamlDotNet.Test/files/02-scalar-in-imp-doc.yaml: -------------------------------------------------------------------------------- 1 | 'a scalar' -------------------------------------------------------------------------------- /YamlDotNet.Test/files/03-scalar-in-exp-doc.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 'a scalar' 3 | ... -------------------------------------------------------------------------------- /YamlDotNet.Test/files/04-scalars-in-multi-docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/files/04-scalars-in-multi-docs.yaml -------------------------------------------------------------------------------- /YamlDotNet.Test/files/05-circular-sequence.yaml: -------------------------------------------------------------------------------- 1 | &A [ *A ] -------------------------------------------------------------------------------- /YamlDotNet.Test/files/06-float-tag.yaml: -------------------------------------------------------------------------------- 1 | !!float "3.14" # A good approximation. -------------------------------------------------------------------------------- /YamlDotNet.Test/files/07-scalar-styles.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/files/07-scalar-styles.yaml -------------------------------------------------------------------------------- /YamlDotNet.Test/files/08-flow-sequence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/files/08-flow-sequence.yaml -------------------------------------------------------------------------------- /YamlDotNet.Test/files/09-flow-mapping.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/files/09-flow-mapping.yaml -------------------------------------------------------------------------------- /YamlDotNet.Test/files/10-mixed-nodes-in-sequence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/files/10-mixed-nodes-in-sequence.yaml -------------------------------------------------------------------------------- /YamlDotNet.Test/files/11-mixed-nodes-in-mapping.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/files/11-mixed-nodes-in-mapping.yaml -------------------------------------------------------------------------------- /YamlDotNet.Test/files/12-compact-sequence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/files/12-compact-sequence.yaml -------------------------------------------------------------------------------- /YamlDotNet.Test/files/13-compact-mapping.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/files/13-compact-mapping.yaml -------------------------------------------------------------------------------- /YamlDotNet.Test/files/14-mapping-wo-indent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/files/14-mapping-wo-indent.yaml -------------------------------------------------------------------------------- /YamlDotNet.Test/files/anchors-overwriting.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/files/anchors-overwriting.yaml -------------------------------------------------------------------------------- /YamlDotNet.Test/files/backreference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/files/backreference.yaml -------------------------------------------------------------------------------- /YamlDotNet.Test/files/backwards-alias.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/files/backwards-alias.yaml -------------------------------------------------------------------------------- /YamlDotNet.Test/files/convertible.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/files/convertible.template -------------------------------------------------------------------------------- /YamlDotNet.Test/files/dictionary-explicit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/files/dictionary-explicit.yaml -------------------------------------------------------------------------------- /YamlDotNet.Test/files/dictionary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/files/dictionary.yaml -------------------------------------------------------------------------------- /YamlDotNet.Test/files/explicit-type.template: -------------------------------------------------------------------------------- 1 | !{type} { 2 | aaa: bbb 3 | } -------------------------------------------------------------------------------- /YamlDotNet.Test/files/fail-backreference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/files/fail-backreference.yaml -------------------------------------------------------------------------------- /YamlDotNet.Test/files/forward-alias.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/files/forward-alias.yaml -------------------------------------------------------------------------------- /YamlDotNet.Test/files/guid.yaml: -------------------------------------------------------------------------------- 1 | 9462790D-5C44-4689-8542-5E2DD38EBD98 2 | ... 3 | -------------------------------------------------------------------------------- /YamlDotNet.Test/files/invalid-reference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/files/invalid-reference.yaml -------------------------------------------------------------------------------- /YamlDotNet.Test/files/list-explicit.yaml: -------------------------------------------------------------------------------- 1 | !List [ 3, 4, 5 ] -------------------------------------------------------------------------------- /YamlDotNet.Test/files/list-of-dictionaries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/files/list-of-dictionaries.yaml -------------------------------------------------------------------------------- /YamlDotNet.Test/files/list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/files/list.yaml -------------------------------------------------------------------------------- /YamlDotNet.Test/files/local-tags.yaml: -------------------------------------------------------------------------------- 1 | --- !MyObject 2 | a: 1.0 3 | b: 42 4 | c: -7 5 | -------------------------------------------------------------------------------- /YamlDotNet.Test/files/multi-doc-tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/files/multi-doc-tag.yaml -------------------------------------------------------------------------------- /YamlDotNet.Test/files/ordered-properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/files/ordered-properties.yaml -------------------------------------------------------------------------------- /YamlDotNet.Test/files/tags.yaml: -------------------------------------------------------------------------------- 1 | !!point 2 | X: 10 3 | Y: 20 4 | -------------------------------------------------------------------------------- /YamlDotNet.Test/files/unicode-32bits-escape.yaml: -------------------------------------------------------------------------------- 1 | - hel􏿿lo♥ 2 | - "hel\U0010fffflo\u2665" 3 | -------------------------------------------------------------------------------- /YamlDotNet.Test/xunit.runner.linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/xunit.runner.linux.json -------------------------------------------------------------------------------- /YamlDotNet.Test/xunit.runner.windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.Test/xunit.runner.windows.json -------------------------------------------------------------------------------- /YamlDotNet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.sln -------------------------------------------------------------------------------- /YamlDotNet.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet.snk -------------------------------------------------------------------------------- /YamlDotNet/Core/AnchorName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/AnchorName.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/AnchorNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/AnchorNotFoundException.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/CharacterAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/CharacterAnalyzer.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Constants.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Cursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Cursor.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Emitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Emitter.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/EmitterSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/EmitterSettings.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/EmitterState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/EmitterState.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Events/AnchorAlias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Events/AnchorAlias.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Events/Comment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Events/Comment.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Events/DocumentEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Events/DocumentEnd.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Events/DocumentStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Events/DocumentStart.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Events/EventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Events/EventType.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Events/IParsingEventVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Events/IParsingEventVisitor.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Events/MappingEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Events/MappingEnd.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Events/MappingStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Events/MappingStart.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Events/MappingStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Events/MappingStyle.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Events/NodeEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Events/NodeEvent.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Events/ParsingEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Events/ParsingEvent.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Events/Scalar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Events/Scalar.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Events/SequenceEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Events/SequenceEnd.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Events/SequenceStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Events/SequenceStart.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Events/SequenceStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Events/SequenceStyle.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Events/StreamEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Events/StreamEnd.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Events/StreamStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Events/StreamStart.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/ForwardAnchorNotSupportedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/ForwardAnchorNotSupportedException.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/HashCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/HashCode.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/IEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/IEmitter.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/ILookAheadBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/ILookAheadBuffer.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/IParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/IParser.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/IScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/IScanner.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/InsertionQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/InsertionQueue.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/LookAheadBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/LookAheadBuffer.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Mark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Mark.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/MaximumRecursionLevelReachedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/MaximumRecursionLevelReachedException.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/MergingParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/MergingParser.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/ObjectPool/DefaultObjectPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/ObjectPool/DefaultObjectPool.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/ObjectPool/DefaultPooledObjectPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/ObjectPool/DefaultPooledObjectPolicy.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/ObjectPool/IPooledObjectPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/ObjectPool/IPooledObjectPolicy.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/ObjectPool/IResettable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/ObjectPool/IResettable.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/ObjectPool/ObjectPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/ObjectPool/ObjectPool.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/ObjectPool/StringBuilderPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/ObjectPool/StringBuilderPool.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/ObjectPool/StringBuilderPooledObjectPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/ObjectPool/StringBuilderPooledObjectPolicy.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/ObjectPool/StringLookAheadBufferPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/ObjectPool/StringLookAheadBufferPool.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Parser.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/ParserExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/ParserExtensions.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/ParserState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/ParserState.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/RecursionLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/RecursionLevel.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/ScalarStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/ScalarStyle.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Scanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Scanner.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/SemanticErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/SemanticErrorException.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/SimpleKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/SimpleKey.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/StringLookAheadBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/StringLookAheadBuffer.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/SyntaxErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/SyntaxErrorException.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/TagDirectiveCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/TagDirectiveCollection.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/TagName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/TagName.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Tokens/Anchor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Tokens/Anchor.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Tokens/AnchorAlias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Tokens/AnchorAlias.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Tokens/BlockEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Tokens/BlockEnd.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Tokens/BlockEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Tokens/BlockEntry.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Tokens/BlockMappingStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Tokens/BlockMappingStart.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Tokens/BlockSequenceStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Tokens/BlockSequenceStart.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Tokens/Comment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Tokens/Comment.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Tokens/DocumentEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Tokens/DocumentEnd.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Tokens/DocumentStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Tokens/DocumentStart.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Tokens/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Tokens/Error.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Tokens/FlowEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Tokens/FlowEntry.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Tokens/FlowMappingEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Tokens/FlowMappingEnd.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Tokens/FlowMappingStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Tokens/FlowMappingStart.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Tokens/FlowSequenceEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Tokens/FlowSequenceEnd.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Tokens/FlowSequenceStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Tokens/FlowSequenceStart.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Tokens/Key.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Tokens/Key.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Tokens/Scalar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Tokens/Scalar.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Tokens/StreamEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Tokens/StreamEnd.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Tokens/StreamStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Tokens/StreamStart.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Tokens/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Tokens/Tag.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Tokens/TagDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Tokens/TagDirective.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Tokens/Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Tokens/Token.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Tokens/Value.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Tokens/Value.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Tokens/VersionDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Tokens/VersionDirective.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/Version.cs -------------------------------------------------------------------------------- /YamlDotNet/Core/YamlException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Core/YamlException.cs -------------------------------------------------------------------------------- /YamlDotNet/CultureInfoAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/CultureInfoAdapter.cs -------------------------------------------------------------------------------- /YamlDotNet/Helpers/DefaultFsharpHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Helpers/DefaultFsharpHelper.cs -------------------------------------------------------------------------------- /YamlDotNet/Helpers/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Helpers/DictionaryExtensions.cs -------------------------------------------------------------------------------- /YamlDotNet/Helpers/ExpressionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Helpers/ExpressionExtensions.cs -------------------------------------------------------------------------------- /YamlDotNet/Helpers/FsharpHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Helpers/FsharpHelper.cs -------------------------------------------------------------------------------- /YamlDotNet/Helpers/GenericCollectionToNonGenericAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Helpers/GenericCollectionToNonGenericAdapter.cs -------------------------------------------------------------------------------- /YamlDotNet/Helpers/GenericDictionaryToNonGenericAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Helpers/GenericDictionaryToNonGenericAdapter.cs -------------------------------------------------------------------------------- /YamlDotNet/Helpers/IFsharpHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Helpers/IFsharpHelper.cs -------------------------------------------------------------------------------- /YamlDotNet/Helpers/IOrderedDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Helpers/IOrderedDictionary.cs -------------------------------------------------------------------------------- /YamlDotNet/Helpers/NullFsharpHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Helpers/NullFsharpHelper.cs -------------------------------------------------------------------------------- /YamlDotNet/Helpers/NumberExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Helpers/NumberExtensions.cs -------------------------------------------------------------------------------- /YamlDotNet/Helpers/OrderedDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Helpers/OrderedDictionary.cs -------------------------------------------------------------------------------- /YamlDotNet/Helpers/Polyfills.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Helpers/Polyfills.cs -------------------------------------------------------------------------------- /YamlDotNet/Helpers/ReadOnlyCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Helpers/ReadOnlyCollectionExtensions.cs -------------------------------------------------------------------------------- /YamlDotNet/Helpers/ThrowHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Helpers/ThrowHelper.cs -------------------------------------------------------------------------------- /YamlDotNet/Portability/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Portability/readme.txt -------------------------------------------------------------------------------- /YamlDotNet/Properties/AssemblyInfo.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Properties/AssemblyInfo.template -------------------------------------------------------------------------------- /YamlDotNet/Properties/CustomAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Properties/CustomAssemblyInfo.cs -------------------------------------------------------------------------------- /YamlDotNet/PropertyInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/PropertyInfoExtensions.cs -------------------------------------------------------------------------------- /YamlDotNet/ReflectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/ReflectionExtensions.cs -------------------------------------------------------------------------------- /YamlDotNet/RepresentationModel/DocumentLoadingState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/RepresentationModel/DocumentLoadingState.cs -------------------------------------------------------------------------------- /YamlDotNet/RepresentationModel/EmitterState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/RepresentationModel/EmitterState.cs -------------------------------------------------------------------------------- /YamlDotNet/RepresentationModel/IYamlVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/RepresentationModel/IYamlVisitor.cs -------------------------------------------------------------------------------- /YamlDotNet/RepresentationModel/LibYamlEventStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/RepresentationModel/LibYamlEventStream.cs -------------------------------------------------------------------------------- /YamlDotNet/RepresentationModel/YamlAliasNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/RepresentationModel/YamlAliasNode.cs -------------------------------------------------------------------------------- /YamlDotNet/RepresentationModel/YamlDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/RepresentationModel/YamlDocument.cs -------------------------------------------------------------------------------- /YamlDotNet/RepresentationModel/YamlMappingNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/RepresentationModel/YamlMappingNode.cs -------------------------------------------------------------------------------- /YamlDotNet/RepresentationModel/YamlNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/RepresentationModel/YamlNode.cs -------------------------------------------------------------------------------- /YamlDotNet/RepresentationModel/YamlNodeIdentityEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/RepresentationModel/YamlNodeIdentityEqualityComparer.cs -------------------------------------------------------------------------------- /YamlDotNet/RepresentationModel/YamlNodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/RepresentationModel/YamlNodeType.cs -------------------------------------------------------------------------------- /YamlDotNet/RepresentationModel/YamlScalarNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/RepresentationModel/YamlScalarNode.cs -------------------------------------------------------------------------------- /YamlDotNet/RepresentationModel/YamlSequenceNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/RepresentationModel/YamlSequenceNode.cs -------------------------------------------------------------------------------- /YamlDotNet/RepresentationModel/YamlStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/RepresentationModel/YamlStream.cs -------------------------------------------------------------------------------- /YamlDotNet/RepresentationModel/YamlVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/RepresentationModel/YamlVisitor.cs -------------------------------------------------------------------------------- /YamlDotNet/RepresentationModel/YamlVisitorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/RepresentationModel/YamlVisitorBase.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/BufferedDeserialization/ITypeDiscriminatingNodeDeserializerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/BufferedDeserialization/ITypeDiscriminatingNodeDeserializerOptions.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/BufferedDeserialization/ParserBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/BufferedDeserialization/ParserBuffer.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/BufferedDeserialization/TypeDiscriminatingNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/BufferedDeserialization/TypeDiscriminatingNodeDeserializer.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/BufferedDeserialization/TypeDiscriminatingNodeDeserializerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/BufferedDeserialization/TypeDiscriminatingNodeDeserializerOptions.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/BufferedDeserialization/TypeDiscriminators/IValueTypeDiscriminator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/BufferedDeserialization/TypeDiscriminators/IValueTypeDiscriminator.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/BufferedDeserialization/TypeDiscriminators/KeyValueTypeDiscriminator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/BufferedDeserialization/TypeDiscriminators/KeyValueTypeDiscriminator.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/BufferedDeserialization/TypeDiscriminators/UniqueKeyTypeDiscriminator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/BufferedDeserialization/TypeDiscriminators/UniqueKeyTypeDiscriminator.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/BuilderSkeleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/BuilderSkeleton.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/Callbacks/OnDeserializedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/Callbacks/OnDeserializedAttribute.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/Callbacks/OnDeserializingAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/Callbacks/OnDeserializingAttribute.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/Callbacks/OnSerializedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/Callbacks/OnSerializedAttribute.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/Callbacks/OnSerializingAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/Callbacks/OnSerializingAttribute.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/Converters/DateOnlyConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/Converters/DateOnlyConverter.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/Converters/DateTime8601Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/Converters/DateTime8601Converter.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/Converters/DateTimeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/Converters/DateTimeConverter.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/Converters/DateTimeOffsetConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/Converters/DateTimeOffsetConverter.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/Converters/GuidConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/Converters/GuidConverter.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/Converters/SystemTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/Converters/SystemTypeConverter.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/Converters/TimeOnlyConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/Converters/TimeOnlyConverter.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/DefaultValuesHandling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/DefaultValuesHandling.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/Deserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/Deserializer.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/DeserializerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/DeserializerBuilder.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/EmissionPhaseObjectGraphVisitorArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/EmissionPhaseObjectGraphVisitorArgs.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/EventEmitters/ChainedEventEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/EventEmitters/ChainedEventEmitter.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/EventEmitters/JsonEventEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/EventEmitters/JsonEventEmitter.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/EventEmitters/TypeAssigningEventEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/EventEmitters/TypeAssigningEventEmitter.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/EventEmitters/WriterEventEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/EventEmitters/WriterEventEmitter.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/EventInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/EventInfo.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/IAliasProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/IAliasProvider.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/IDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/IDeserializer.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/IEventEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/IEventEmitter.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/INamingConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/INamingConvention.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/INodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/INodeDeserializer.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/INodeTypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/INodeTypeResolver.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/IObjectAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/IObjectAccessor.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/IObjectDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/IObjectDescriptor.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/IObjectFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/IObjectFactory.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/IObjectGraphTraversalStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/IObjectGraphTraversalStrategy.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/IObjectGraphVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/IObjectGraphVisitor.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/IPropertyDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/IPropertyDescriptor.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/IRegistrationLocationSelectionSyntax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/IRegistrationLocationSelectionSyntax.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/ISerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/ISerializer.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/ITypeInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/ITypeInspector.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/ITypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/ITypeResolver.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/IValueDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/IValueDeserializer.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/IValuePromise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/IValuePromise.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/IValueSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/IValueSerializer.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/IYamlConvertible.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/IYamlConvertible.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/IYamlSerializable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/IYamlSerializable.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/IYamlTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/IYamlTypeConverter.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/LazyComponentRegistrationList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/LazyComponentRegistrationList.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/LazyComponentRegistrationListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/LazyComponentRegistrationListExtensions.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/NamingConventions/CamelCaseNamingConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/NamingConventions/CamelCaseNamingConvention.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/NamingConventions/HyphenatedNamingConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/NamingConventions/HyphenatedNamingConvention.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/NamingConventions/LowerCaseNamingConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/NamingConventions/LowerCaseNamingConvention.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/NamingConventions/NullNamingConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/NamingConventions/NullNamingConvention.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/NamingConventions/PascalCaseNamingConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/NamingConventions/PascalCaseNamingConvention.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/NamingConventions/UnderscoredNamingConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/NamingConventions/UnderscoredNamingConvention.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/NodeDeserializers/ArrayNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/NodeDeserializers/ArrayNodeDeserializer.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/NodeDeserializers/CollectionDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/NodeDeserializers/CollectionDeserializer.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/NodeDeserializers/CollectionNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/NodeDeserializers/CollectionNodeDeserializer.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/NodeDeserializers/DictionaryDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/NodeDeserializers/DictionaryDeserializer.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/NodeDeserializers/DictionaryNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/NodeDeserializers/DictionaryNodeDeserializer.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/NodeDeserializers/EnumerableNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/NodeDeserializers/EnumerableNodeDeserializer.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/NodeDeserializers/FsharpListNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/NodeDeserializers/FsharpListNodeDeserializer.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/NodeDeserializers/NullNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/NodeDeserializers/NullNodeDeserializer.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/NodeDeserializers/ObjectNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/NodeDeserializers/ObjectNodeDeserializer.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/NodeDeserializers/ScalarNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/NodeDeserializers/ScalarNodeDeserializer.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/NodeDeserializers/StaticArrayNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/NodeDeserializers/StaticArrayNodeDeserializer.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/NodeDeserializers/StaticCollectionNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/NodeDeserializers/StaticCollectionNodeDeserializer.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/NodeDeserializers/StaticDictionaryNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/NodeDeserializers/StaticDictionaryNodeDeserializer.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/NodeDeserializers/TypeConverterNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/NodeDeserializers/TypeConverterNodeDeserializer.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/NodeDeserializers/YamlConvertibleNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/NodeDeserializers/YamlConvertibleNodeDeserializer.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/NodeDeserializers/YamlSerializableNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/NodeDeserializers/YamlSerializableNodeDeserializer.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/NodeTypeResolvers/DefaultContainersNodeTypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/NodeTypeResolvers/DefaultContainersNodeTypeResolver.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/NodeTypeResolvers/MappingNodeTypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/NodeTypeResolvers/MappingNodeTypeResolver.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/NodeTypeResolvers/RejectUnknownTagsNodeTypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/NodeTypeResolvers/RejectUnknownTagsNodeTypeResolver.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/NodeTypeResolvers/TagNodeTypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/NodeTypeResolvers/TagNodeTypeResolver.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/NodeTypeResolvers/TypeNameInTagNodeTypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/NodeTypeResolvers/TypeNameInTagNodeTypeResolver.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/NodeTypeResolvers/YamlConvertibleTypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/NodeTypeResolvers/YamlConvertibleTypeResolver.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/NodeTypeResolvers/YamlSerializableTypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/NodeTypeResolvers/YamlSerializableTypeResolver.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/Nothing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/Nothing.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/ObjectDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/ObjectDescriptor.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/ObjectFactories/DefaultObjectFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/ObjectFactories/DefaultObjectFactory.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/ObjectFactories/LambdaObjectFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/ObjectFactories/LambdaObjectFactory.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/ObjectFactories/ObjectFactoryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/ObjectFactories/ObjectFactoryBase.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/ObjectFactories/StaticObjectFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/ObjectFactories/StaticObjectFactory.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/ObjectGraphTraversalStrategies/FullObjectGraphTraversalStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/ObjectGraphTraversalStrategies/FullObjectGraphTraversalStrategy.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/ObjectGraphTraversalStrategies/RoundtripObjectGraphTraversalStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/ObjectGraphTraversalStrategies/RoundtripObjectGraphTraversalStrategy.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/ObjectGraphTraversalStrategyFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/ObjectGraphTraversalStrategyFactory.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/ObjectGraphVisitors/AnchorAssigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/ObjectGraphVisitors/AnchorAssigner.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/ObjectGraphVisitors/AnchorAssigningObjectGraphVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/ObjectGraphVisitors/AnchorAssigningObjectGraphVisitor.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/ObjectGraphVisitors/ChainedObjectGraphVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/ObjectGraphVisitors/ChainedObjectGraphVisitor.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/ObjectGraphVisitors/CommentsObjectGraphVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/ObjectGraphVisitors/CommentsObjectGraphVisitor.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/ObjectGraphVisitors/CustomSerializationObjectGraphVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/ObjectGraphVisitors/CustomSerializationObjectGraphVisitor.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/ObjectGraphVisitors/DefaultExclusiveObjectGraphVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/ObjectGraphVisitors/DefaultExclusiveObjectGraphVisitor.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/ObjectGraphVisitors/DefaultValuesObjectGraphVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/ObjectGraphVisitors/DefaultValuesObjectGraphVisitor.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/ObjectGraphVisitors/EmittingObjectGraphVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/ObjectGraphVisitors/EmittingObjectGraphVisitor.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/ObjectGraphVisitors/PreProcessingPhaseObjectGraphVisitorSkeleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/ObjectGraphVisitors/PreProcessingPhaseObjectGraphVisitorSkeleton.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/PropertyDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/PropertyDescriptor.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/Schemas/FailsafeSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/Schemas/FailsafeSchema.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/Serializer.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/SerializerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/SerializerBuilder.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/Settings.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/StaticBuilderSkeleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/StaticBuilderSkeleton.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/StaticContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/StaticContext.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/StaticDeserializerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/StaticDeserializerBuilder.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/StaticSerializerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/StaticSerializerBuilder.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/StreamFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/StreamFragment.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/TagMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/TagMappings.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/TypeInspectors/CachedTypeInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/TypeInspectors/CachedTypeInspector.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/TypeInspectors/CompositeTypeInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/TypeInspectors/CompositeTypeInspector.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/TypeInspectors/NamingConventionTypeInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/TypeInspectors/NamingConventionTypeInspector.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/TypeInspectors/ReadableAndWritablePropertiesTypeInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/TypeInspectors/ReadableAndWritablePropertiesTypeInspector.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/TypeInspectors/ReadableFieldsTypeInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/TypeInspectors/ReadableFieldsTypeInspector.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/TypeInspectors/ReadablePropertiesTypeInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/TypeInspectors/ReadablePropertiesTypeInspector.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/TypeInspectors/ReflectionTypeInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/TypeInspectors/ReflectionTypeInspector.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/TypeInspectors/TypeInspectorSkeleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/TypeInspectors/TypeInspectorSkeleton.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/TypeInspectors/WritablePropertiesTypeInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/TypeInspectors/WritablePropertiesTypeInspector.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/TypeResolvers/DynamicTypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/TypeResolvers/DynamicTypeResolver.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/TypeResolvers/StaticTypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/TypeResolvers/StaticTypeResolver.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/Utilities/IPostDeserializationCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/Utilities/IPostDeserializationCallback.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/Utilities/ITypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/Utilities/ITypeConverter.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/Utilities/NullTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/Utilities/NullTypeConverter.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/Utilities/ObjectAnchorCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/Utilities/ObjectAnchorCollection.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/Utilities/ReflectionTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/Utilities/ReflectionTypeConverter.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/Utilities/SerializerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/Utilities/SerializerState.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/Utilities/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/Utilities/StringExtensions.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/Utilities/TypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/Utilities/TypeConverter.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/Utilities/TypeConverterCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/Utilities/TypeConverterCache.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/ValueDeserializers/AliasValueDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/ValueDeserializers/AliasValueDeserializer.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/ValueDeserializers/NodeValueDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/ValueDeserializers/NodeValueDeserializer.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/YamlAttributeOverrides.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/YamlAttributeOverrides.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/YamlAttributeOverridesInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/YamlAttributeOverridesInspector.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/YamlAttributesTypeInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/YamlAttributesTypeInspector.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/YamlConverterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/YamlConverterAttribute.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/YamlFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/YamlFormatter.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/YamlIgnoreAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/YamlIgnoreAttribute.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/YamlMemberAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/YamlMemberAttribute.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/YamlSerializable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/YamlSerializable.cs -------------------------------------------------------------------------------- /YamlDotNet/Serialization/YamlStaticContextAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/Serialization/YamlStaticContextAttribute.cs -------------------------------------------------------------------------------- /YamlDotNet/StandardRegexOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/StandardRegexOptions.cs -------------------------------------------------------------------------------- /YamlDotNet/YamlDotNet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/YamlDotNet/YamlDotNet.csproj -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/appveyor.yml -------------------------------------------------------------------------------- /docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/docker-build.sh -------------------------------------------------------------------------------- /tools/build/AutoNumberToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/tools/build/AutoNumberToStringConverter.cs -------------------------------------------------------------------------------- /tools/build/BuildDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/tools/build/BuildDefinition.cs -------------------------------------------------------------------------------- /tools/build/GitHubApiModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/tools/build/GitHubApiModels.cs -------------------------------------------------------------------------------- /tools/build/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/tools/build/Program.cs -------------------------------------------------------------------------------- /tools/build/TwitterProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/tools/build/TwitterProvider.cs -------------------------------------------------------------------------------- /tools/build/build.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/tools/build/build.csproj -------------------------------------------------------------------------------- /tools/build/build.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/tools/build/build.sln -------------------------------------------------------------------------------- /tools/parsers/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/tools/parsers/build.ps1 -------------------------------------------------------------------------------- /tools/parsers/perl-yaml-pp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/tools/parsers/perl-yaml-pp/Dockerfile -------------------------------------------------------------------------------- /tools/parsers/perl-yaml-pp/parse.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/tools/parsers/perl-yaml-pp/parse.pl -------------------------------------------------------------------------------- /tools/parsers/python/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/tools/parsers/python/Dockerfile -------------------------------------------------------------------------------- /tools/parsers/reference/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/tools/parsers/reference/Dockerfile -------------------------------------------------------------------------------- /tools/parsers/reference/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/tools/parsers/reference/run.sh -------------------------------------------------------------------------------- /tools/syntax-checker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/tools/syntax-checker/Dockerfile -------------------------------------------------------------------------------- /tools/syntax-checker/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/tools/syntax-checker/build.cmd -------------------------------------------------------------------------------- /tools/syntax-checker/check-syntax.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/tools/syntax-checker/check-syntax.ps1 -------------------------------------------------------------------------------- /yamldotnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/yamldotnet.png -------------------------------------------------------------------------------- /yamldotnet.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaubry/YamlDotNet/HEAD/yamldotnet.xcf --------------------------------------------------------------------------------