├── .gitattributes ├── .github └── dependabot.yml ├── .gitignore ├── .travis.yml ├── Hyperion.sln ├── LICENSE ├── NuGet.Config ├── README.md ├── RELEASE_NOTES.md ├── coverlet.runsettings ├── docs ├── api │ └── index.md ├── articles │ ├── index.md │ └── toc.yml ├── docfx.json ├── images │ └── icon.png ├── index.md └── toc.yml ├── global.json ├── scripts ├── bumpVersion.ps1 └── getReleaseNotes.ps1 └── src ├── Hyperion.API.Tests ├── CoreAPISpec.cs ├── CoreApiSpec.ApproveApi.approved.txt └── Hyperion.API.Tests.csproj ├── Hyperion.Akka.Integration.Tests ├── Hyperion.Akka.Integration.Tests.csproj └── IntegrationSpec.cs ├── Hyperion.Benchmarks ├── Hyperion.Benchmarks.csproj ├── Program.cs ├── Prolog.cs ├── SerializeClassesBenchmark.cs ├── SerializeCollectionsBenchmark.cs ├── SerializeFSharpDataTypesBenchmark.cs ├── SerializeImmutableCollectionsBenchmark.cs ├── SerializePrimitivesBenchmark.cs ├── SerializeStructsBenchmark.cs └── TypeRejectionBenchmark.cs ├── Hyperion.Tests.FSharpData ├── Hyperion.Tests.FSharpData.fsproj └── Types.fs ├── Hyperion.Tests ├── AttributeTests.cs ├── Bugs.cs ├── CollectionTests.cs ├── CrossFrameworkSerializationTests.cs ├── CustomObjectTests.cs ├── CyclicTests.cs ├── DelegateTests.cs ├── EncapsulationTests.cs ├── ExpressionTests.cs ├── FSharpTests.cs ├── Generator │ ├── CrossFrameworkClass.cs │ ├── CrossFrameworkEnum.cs │ ├── CrossFrameworkInitializer.cs │ ├── CrossFrameworkStruct.cs │ └── Program.cs ├── GenericDictionarySerializerTests.cs ├── Hyperion.Tests.csproj ├── ISerializableTests.cs ├── IlCompilerTests.cs ├── ImmutableCollectionsTests.cs ├── IncompleteStreamTests.cs ├── InterfaceTests.cs ├── PartialStreamTests.cs ├── PrimitivesTests.cs ├── Properties │ └── launchSettings.json ├── Something.cs ├── SurrogateTests.cs ├── TestBase.cs ├── UnsafeDeserializationExclusionTests.cs ├── UnsupportedTypeSerializerTests.cs ├── lib │ ├── Microsoft.VisualStudio.Text.UI.Wpf.dll │ ├── PresentationFramework.dll │ ├── System.Activities.Presentation.dll │ ├── System.Drawing.Design.dll │ ├── System.Drawing.dll │ ├── System.IdentityModel.dll │ ├── System.Web.Mobile.dll │ ├── System.Web.dll │ └── System.Windows.Forms.dll └── testfiles │ ├── mixed_test_file_.netcoreappversionv2.0.tf │ ├── mixed_test_file_.netcoreappversionv2.1.tf │ ├── mixed_test_file_.netcoreappversionv2.2.tf │ ├── mixed_test_file_.netcoreappversionv3.0.tf │ ├── mixed_test_file_.netcoreappversionv3.1.tf │ ├── mixed_test_file_.netcoreappversionv5.0.tf │ ├── mixed_test_file_.netframeworkversionv4.6.1.tf │ ├── test_file_.netcoreappversionv2.0.tf │ ├── test_file_.netcoreappversionv2.1.tf │ ├── test_file_.netcoreappversionv2.2.tf │ ├── test_file_.netcoreappversionv3.0.tf │ ├── test_file_.netcoreappversionv3.1.tf │ ├── test_file_.netcoreappversionv5.0.tf │ └── test_file_.netframeworkversionv4.6.1.tf ├── Hyperion ├── .vscode │ ├── launch.json │ └── tasks.json ├── Attributes.cs ├── ByteArrayKey.cs ├── ByteArrayKeyComparer.cs ├── Compilation │ ├── Compiler.cs │ ├── ExpressionEx.cs │ ├── ICompiler.cs │ ├── IlBuilder.cs │ ├── IlCompiler.cs │ ├── IlCompilerContext.cs │ └── IlExpression.cs ├── DefaultCodeGenerator.cs ├── Delegates.cs ├── DeserializeSession.cs ├── Extensions │ ├── ReflectionEx.cs │ ├── StreamEx.cs │ ├── StringEx.cs │ └── TypeEx.cs ├── Hyperion.csproj ├── ICodeGenerator.cs ├── ITypeFilter.cs ├── Internal │ └── Annotations.cs ├── NoAllocBitConverter.cs ├── Properties │ └── AssemblyInfo.cs ├── Serializer.cs ├── SerializerFactories │ ├── AggregateExceptionSerializerFactory.cs │ ├── ArraySerializerFactory.cs │ ├── ConsistentArraySerializerFactory.cs │ ├── ConstructorInfoSerializerFactory.cs │ ├── DefaultDictionarySerializerFactory.cs │ ├── DelegateSerializerFactory.cs │ ├── DictionarySerializerFactory.cs │ ├── EnumerableSerializerFactory.cs │ ├── ExceptionSerializerFactory.cs │ ├── ExpandoObjectSerializerFactory.cs │ ├── FSharpListSerializerFactory.cs │ ├── FSharpMapSerializerFactory.cs │ ├── FieldInfoSerializerFactory.cs │ ├── FromSurrogateSerializerFactory.cs │ ├── ISerializableSerializerFactory.cs │ ├── ImmutableCollectionsSerializerFactory.cs │ ├── MethodInfoSerializerFactory.cs │ ├── MultipleDimensionalArraySerialzierFactory.cs │ ├── PropertyInfoSerializerFactory.cs │ ├── ToSurrogateSerializerFactory.cs │ └── ValueSerializerFactory.cs ├── SerializerOptions.cs ├── SerializerSession.cs ├── Surrogate.cs ├── TypeFilter.cs ├── TypeFilterBuilder.cs └── ValueSerializers │ ├── BoolSerializer.cs │ ├── ByteArraySerializer.cs │ ├── ByteSerializer.cs │ ├── CharSerializer.cs │ ├── ConsistentArraySerializer.cs │ ├── DateTimeOffsetSerializer.cs │ ├── DateTimeSerializer.cs │ ├── DecimalSerializer.cs │ ├── DoubleSerializer.cs │ ├── FloatSerializer.cs │ ├── FromSurrogateSerializer.cs │ ├── GuidSerializer.cs │ ├── Int16Serializer.cs │ ├── Int32Serializer.cs │ ├── Int64Serializer.cs │ ├── KnownTypeObjectSerializer.cs │ ├── NullSerializer.cs │ ├── ObjectReferenceSerializer.cs │ ├── ObjectSerializer.cs │ ├── SByteSerializer.cs │ ├── SessionAwareByteArrayRequiringValueSerializer.cs │ ├── SessionAwareByteArrayRequiringValueSerializer.cs.orig │ ├── SessionIgnorantValueSerializer.cs │ ├── StringSerializer.cs │ ├── SystemObjectSerializer.cs │ ├── ToSurrogateSerializer.cs │ ├── TypeSerializer.cs │ ├── UInt16Serializer.cs │ ├── UInt32Serializer.cs │ ├── UInt64Serializer.cs │ ├── UnsupportedTypeSerializer.cs │ └── ValueSerializer.cs ├── common.props ├── xunit.runner.json └── xunitSettings.props /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/.travis.yml -------------------------------------------------------------------------------- /Hyperion.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/Hyperion.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/LICENSE -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/NuGet.Config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/RELEASE_NOTES.md -------------------------------------------------------------------------------- /coverlet.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/coverlet.runsettings -------------------------------------------------------------------------------- /docs/api/index.md: -------------------------------------------------------------------------------- 1 | # API Docs -------------------------------------------------------------------------------- /docs/articles/index.md: -------------------------------------------------------------------------------- 1 | # Introduction 2 | 3 | Article text goes here. -------------------------------------------------------------------------------- /docs/articles/toc.yml: -------------------------------------------------------------------------------- 1 | - name: Introduction 2 | href: index.md -------------------------------------------------------------------------------- /docs/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/docs/docfx.json -------------------------------------------------------------------------------- /docs/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/docs/images/icon.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | # Introduction to My Project -------------------------------------------------------------------------------- /docs/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/docs/toc.yml -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/global.json -------------------------------------------------------------------------------- /scripts/bumpVersion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/scripts/bumpVersion.ps1 -------------------------------------------------------------------------------- /scripts/getReleaseNotes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/scripts/getReleaseNotes.ps1 -------------------------------------------------------------------------------- /src/Hyperion.API.Tests/CoreAPISpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.API.Tests/CoreAPISpec.cs -------------------------------------------------------------------------------- /src/Hyperion.API.Tests/CoreApiSpec.ApproveApi.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.API.Tests/CoreApiSpec.ApproveApi.approved.txt -------------------------------------------------------------------------------- /src/Hyperion.API.Tests/Hyperion.API.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.API.Tests/Hyperion.API.Tests.csproj -------------------------------------------------------------------------------- /src/Hyperion.Akka.Integration.Tests/Hyperion.Akka.Integration.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Akka.Integration.Tests/Hyperion.Akka.Integration.Tests.csproj -------------------------------------------------------------------------------- /src/Hyperion.Akka.Integration.Tests/IntegrationSpec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Akka.Integration.Tests/IntegrationSpec.cs -------------------------------------------------------------------------------- /src/Hyperion.Benchmarks/Hyperion.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Benchmarks/Hyperion.Benchmarks.csproj -------------------------------------------------------------------------------- /src/Hyperion.Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Benchmarks/Program.cs -------------------------------------------------------------------------------- /src/Hyperion.Benchmarks/Prolog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Benchmarks/Prolog.cs -------------------------------------------------------------------------------- /src/Hyperion.Benchmarks/SerializeClassesBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Benchmarks/SerializeClassesBenchmark.cs -------------------------------------------------------------------------------- /src/Hyperion.Benchmarks/SerializeCollectionsBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Benchmarks/SerializeCollectionsBenchmark.cs -------------------------------------------------------------------------------- /src/Hyperion.Benchmarks/SerializeFSharpDataTypesBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Benchmarks/SerializeFSharpDataTypesBenchmark.cs -------------------------------------------------------------------------------- /src/Hyperion.Benchmarks/SerializeImmutableCollectionsBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Benchmarks/SerializeImmutableCollectionsBenchmark.cs -------------------------------------------------------------------------------- /src/Hyperion.Benchmarks/SerializePrimitivesBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Benchmarks/SerializePrimitivesBenchmark.cs -------------------------------------------------------------------------------- /src/Hyperion.Benchmarks/SerializeStructsBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Benchmarks/SerializeStructsBenchmark.cs -------------------------------------------------------------------------------- /src/Hyperion.Benchmarks/TypeRejectionBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Benchmarks/TypeRejectionBenchmark.cs -------------------------------------------------------------------------------- /src/Hyperion.Tests.FSharpData/Hyperion.Tests.FSharpData.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests.FSharpData/Hyperion.Tests.FSharpData.fsproj -------------------------------------------------------------------------------- /src/Hyperion.Tests.FSharpData/Types.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests.FSharpData/Types.fs -------------------------------------------------------------------------------- /src/Hyperion.Tests/AttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/AttributeTests.cs -------------------------------------------------------------------------------- /src/Hyperion.Tests/Bugs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/Bugs.cs -------------------------------------------------------------------------------- /src/Hyperion.Tests/CollectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/CollectionTests.cs -------------------------------------------------------------------------------- /src/Hyperion.Tests/CrossFrameworkSerializationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/CrossFrameworkSerializationTests.cs -------------------------------------------------------------------------------- /src/Hyperion.Tests/CustomObjectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/CustomObjectTests.cs -------------------------------------------------------------------------------- /src/Hyperion.Tests/CyclicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/CyclicTests.cs -------------------------------------------------------------------------------- /src/Hyperion.Tests/DelegateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/DelegateTests.cs -------------------------------------------------------------------------------- /src/Hyperion.Tests/EncapsulationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/EncapsulationTests.cs -------------------------------------------------------------------------------- /src/Hyperion.Tests/ExpressionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/ExpressionTests.cs -------------------------------------------------------------------------------- /src/Hyperion.Tests/FSharpTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/FSharpTests.cs -------------------------------------------------------------------------------- /src/Hyperion.Tests/Generator/CrossFrameworkClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/Generator/CrossFrameworkClass.cs -------------------------------------------------------------------------------- /src/Hyperion.Tests/Generator/CrossFrameworkEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/Generator/CrossFrameworkEnum.cs -------------------------------------------------------------------------------- /src/Hyperion.Tests/Generator/CrossFrameworkInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/Generator/CrossFrameworkInitializer.cs -------------------------------------------------------------------------------- /src/Hyperion.Tests/Generator/CrossFrameworkStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/Generator/CrossFrameworkStruct.cs -------------------------------------------------------------------------------- /src/Hyperion.Tests/Generator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/Generator/Program.cs -------------------------------------------------------------------------------- /src/Hyperion.Tests/GenericDictionarySerializerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/GenericDictionarySerializerTests.cs -------------------------------------------------------------------------------- /src/Hyperion.Tests/Hyperion.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/Hyperion.Tests.csproj -------------------------------------------------------------------------------- /src/Hyperion.Tests/ISerializableTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/ISerializableTests.cs -------------------------------------------------------------------------------- /src/Hyperion.Tests/IlCompilerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/IlCompilerTests.cs -------------------------------------------------------------------------------- /src/Hyperion.Tests/ImmutableCollectionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/ImmutableCollectionsTests.cs -------------------------------------------------------------------------------- /src/Hyperion.Tests/IncompleteStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/IncompleteStreamTests.cs -------------------------------------------------------------------------------- /src/Hyperion.Tests/InterfaceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/InterfaceTests.cs -------------------------------------------------------------------------------- /src/Hyperion.Tests/PartialStreamTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/PartialStreamTests.cs -------------------------------------------------------------------------------- /src/Hyperion.Tests/PrimitivesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/PrimitivesTests.cs -------------------------------------------------------------------------------- /src/Hyperion.Tests/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Hyperion.Tests/Something.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/Something.cs -------------------------------------------------------------------------------- /src/Hyperion.Tests/SurrogateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/SurrogateTests.cs -------------------------------------------------------------------------------- /src/Hyperion.Tests/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/TestBase.cs -------------------------------------------------------------------------------- /src/Hyperion.Tests/UnsafeDeserializationExclusionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/UnsafeDeserializationExclusionTests.cs -------------------------------------------------------------------------------- /src/Hyperion.Tests/UnsupportedTypeSerializerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/UnsupportedTypeSerializerTests.cs -------------------------------------------------------------------------------- /src/Hyperion.Tests/lib/Microsoft.VisualStudio.Text.UI.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/lib/Microsoft.VisualStudio.Text.UI.Wpf.dll -------------------------------------------------------------------------------- /src/Hyperion.Tests/lib/PresentationFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/lib/PresentationFramework.dll -------------------------------------------------------------------------------- /src/Hyperion.Tests/lib/System.Activities.Presentation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/lib/System.Activities.Presentation.dll -------------------------------------------------------------------------------- /src/Hyperion.Tests/lib/System.Drawing.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/lib/System.Drawing.Design.dll -------------------------------------------------------------------------------- /src/Hyperion.Tests/lib/System.Drawing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/lib/System.Drawing.dll -------------------------------------------------------------------------------- /src/Hyperion.Tests/lib/System.IdentityModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/lib/System.IdentityModel.dll -------------------------------------------------------------------------------- /src/Hyperion.Tests/lib/System.Web.Mobile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/lib/System.Web.Mobile.dll -------------------------------------------------------------------------------- /src/Hyperion.Tests/lib/System.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/lib/System.Web.dll -------------------------------------------------------------------------------- /src/Hyperion.Tests/lib/System.Windows.Forms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/lib/System.Windows.Forms.dll -------------------------------------------------------------------------------- /src/Hyperion.Tests/testfiles/mixed_test_file_.netcoreappversionv2.0.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/testfiles/mixed_test_file_.netcoreappversionv2.0.tf -------------------------------------------------------------------------------- /src/Hyperion.Tests/testfiles/mixed_test_file_.netcoreappversionv2.1.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/testfiles/mixed_test_file_.netcoreappversionv2.1.tf -------------------------------------------------------------------------------- /src/Hyperion.Tests/testfiles/mixed_test_file_.netcoreappversionv2.2.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/testfiles/mixed_test_file_.netcoreappversionv2.2.tf -------------------------------------------------------------------------------- /src/Hyperion.Tests/testfiles/mixed_test_file_.netcoreappversionv3.0.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/testfiles/mixed_test_file_.netcoreappversionv3.0.tf -------------------------------------------------------------------------------- /src/Hyperion.Tests/testfiles/mixed_test_file_.netcoreappversionv3.1.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/testfiles/mixed_test_file_.netcoreappversionv3.1.tf -------------------------------------------------------------------------------- /src/Hyperion.Tests/testfiles/mixed_test_file_.netcoreappversionv5.0.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/testfiles/mixed_test_file_.netcoreappversionv5.0.tf -------------------------------------------------------------------------------- /src/Hyperion.Tests/testfiles/mixed_test_file_.netframeworkversionv4.6.1.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/testfiles/mixed_test_file_.netframeworkversionv4.6.1.tf -------------------------------------------------------------------------------- /src/Hyperion.Tests/testfiles/test_file_.netcoreappversionv2.0.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/testfiles/test_file_.netcoreappversionv2.0.tf -------------------------------------------------------------------------------- /src/Hyperion.Tests/testfiles/test_file_.netcoreappversionv2.1.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/testfiles/test_file_.netcoreappversionv2.1.tf -------------------------------------------------------------------------------- /src/Hyperion.Tests/testfiles/test_file_.netcoreappversionv2.2.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/testfiles/test_file_.netcoreappversionv2.2.tf -------------------------------------------------------------------------------- /src/Hyperion.Tests/testfiles/test_file_.netcoreappversionv3.0.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/testfiles/test_file_.netcoreappversionv3.0.tf -------------------------------------------------------------------------------- /src/Hyperion.Tests/testfiles/test_file_.netcoreappversionv3.1.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/testfiles/test_file_.netcoreappversionv3.1.tf -------------------------------------------------------------------------------- /src/Hyperion.Tests/testfiles/test_file_.netcoreappversionv5.0.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/testfiles/test_file_.netcoreappversionv5.0.tf -------------------------------------------------------------------------------- /src/Hyperion.Tests/testfiles/test_file_.netframeworkversionv4.6.1.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion.Tests/testfiles/test_file_.netframeworkversionv4.6.1.tf -------------------------------------------------------------------------------- /src/Hyperion/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/.vscode/launch.json -------------------------------------------------------------------------------- /src/Hyperion/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/.vscode/tasks.json -------------------------------------------------------------------------------- /src/Hyperion/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/Attributes.cs -------------------------------------------------------------------------------- /src/Hyperion/ByteArrayKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ByteArrayKey.cs -------------------------------------------------------------------------------- /src/Hyperion/ByteArrayKeyComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ByteArrayKeyComparer.cs -------------------------------------------------------------------------------- /src/Hyperion/Compilation/Compiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/Compilation/Compiler.cs -------------------------------------------------------------------------------- /src/Hyperion/Compilation/ExpressionEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/Compilation/ExpressionEx.cs -------------------------------------------------------------------------------- /src/Hyperion/Compilation/ICompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/Compilation/ICompiler.cs -------------------------------------------------------------------------------- /src/Hyperion/Compilation/IlBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/Compilation/IlBuilder.cs -------------------------------------------------------------------------------- /src/Hyperion/Compilation/IlCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/Compilation/IlCompiler.cs -------------------------------------------------------------------------------- /src/Hyperion/Compilation/IlCompilerContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/Compilation/IlCompilerContext.cs -------------------------------------------------------------------------------- /src/Hyperion/Compilation/IlExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/Compilation/IlExpression.cs -------------------------------------------------------------------------------- /src/Hyperion/DefaultCodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/DefaultCodeGenerator.cs -------------------------------------------------------------------------------- /src/Hyperion/Delegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/Delegates.cs -------------------------------------------------------------------------------- /src/Hyperion/DeserializeSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/DeserializeSession.cs -------------------------------------------------------------------------------- /src/Hyperion/Extensions/ReflectionEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/Extensions/ReflectionEx.cs -------------------------------------------------------------------------------- /src/Hyperion/Extensions/StreamEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/Extensions/StreamEx.cs -------------------------------------------------------------------------------- /src/Hyperion/Extensions/StringEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/Extensions/StringEx.cs -------------------------------------------------------------------------------- /src/Hyperion/Extensions/TypeEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/Extensions/TypeEx.cs -------------------------------------------------------------------------------- /src/Hyperion/Hyperion.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/Hyperion.csproj -------------------------------------------------------------------------------- /src/Hyperion/ICodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ICodeGenerator.cs -------------------------------------------------------------------------------- /src/Hyperion/ITypeFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ITypeFilter.cs -------------------------------------------------------------------------------- /src/Hyperion/Internal/Annotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/Internal/Annotations.cs -------------------------------------------------------------------------------- /src/Hyperion/NoAllocBitConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/NoAllocBitConverter.cs -------------------------------------------------------------------------------- /src/Hyperion/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Hyperion/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/Serializer.cs -------------------------------------------------------------------------------- /src/Hyperion/SerializerFactories/AggregateExceptionSerializerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/SerializerFactories/AggregateExceptionSerializerFactory.cs -------------------------------------------------------------------------------- /src/Hyperion/SerializerFactories/ArraySerializerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/SerializerFactories/ArraySerializerFactory.cs -------------------------------------------------------------------------------- /src/Hyperion/SerializerFactories/ConsistentArraySerializerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/SerializerFactories/ConsistentArraySerializerFactory.cs -------------------------------------------------------------------------------- /src/Hyperion/SerializerFactories/ConstructorInfoSerializerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/SerializerFactories/ConstructorInfoSerializerFactory.cs -------------------------------------------------------------------------------- /src/Hyperion/SerializerFactories/DefaultDictionarySerializerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/SerializerFactories/DefaultDictionarySerializerFactory.cs -------------------------------------------------------------------------------- /src/Hyperion/SerializerFactories/DelegateSerializerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/SerializerFactories/DelegateSerializerFactory.cs -------------------------------------------------------------------------------- /src/Hyperion/SerializerFactories/DictionarySerializerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/SerializerFactories/DictionarySerializerFactory.cs -------------------------------------------------------------------------------- /src/Hyperion/SerializerFactories/EnumerableSerializerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/SerializerFactories/EnumerableSerializerFactory.cs -------------------------------------------------------------------------------- /src/Hyperion/SerializerFactories/ExceptionSerializerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/SerializerFactories/ExceptionSerializerFactory.cs -------------------------------------------------------------------------------- /src/Hyperion/SerializerFactories/ExpandoObjectSerializerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/SerializerFactories/ExpandoObjectSerializerFactory.cs -------------------------------------------------------------------------------- /src/Hyperion/SerializerFactories/FSharpListSerializerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/SerializerFactories/FSharpListSerializerFactory.cs -------------------------------------------------------------------------------- /src/Hyperion/SerializerFactories/FSharpMapSerializerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/SerializerFactories/FSharpMapSerializerFactory.cs -------------------------------------------------------------------------------- /src/Hyperion/SerializerFactories/FieldInfoSerializerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/SerializerFactories/FieldInfoSerializerFactory.cs -------------------------------------------------------------------------------- /src/Hyperion/SerializerFactories/FromSurrogateSerializerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/SerializerFactories/FromSurrogateSerializerFactory.cs -------------------------------------------------------------------------------- /src/Hyperion/SerializerFactories/ISerializableSerializerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/SerializerFactories/ISerializableSerializerFactory.cs -------------------------------------------------------------------------------- /src/Hyperion/SerializerFactories/ImmutableCollectionsSerializerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/SerializerFactories/ImmutableCollectionsSerializerFactory.cs -------------------------------------------------------------------------------- /src/Hyperion/SerializerFactories/MethodInfoSerializerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/SerializerFactories/MethodInfoSerializerFactory.cs -------------------------------------------------------------------------------- /src/Hyperion/SerializerFactories/MultipleDimensionalArraySerialzierFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/SerializerFactories/MultipleDimensionalArraySerialzierFactory.cs -------------------------------------------------------------------------------- /src/Hyperion/SerializerFactories/PropertyInfoSerializerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/SerializerFactories/PropertyInfoSerializerFactory.cs -------------------------------------------------------------------------------- /src/Hyperion/SerializerFactories/ToSurrogateSerializerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/SerializerFactories/ToSurrogateSerializerFactory.cs -------------------------------------------------------------------------------- /src/Hyperion/SerializerFactories/ValueSerializerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/SerializerFactories/ValueSerializerFactory.cs -------------------------------------------------------------------------------- /src/Hyperion/SerializerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/SerializerOptions.cs -------------------------------------------------------------------------------- /src/Hyperion/SerializerSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/SerializerSession.cs -------------------------------------------------------------------------------- /src/Hyperion/Surrogate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/Surrogate.cs -------------------------------------------------------------------------------- /src/Hyperion/TypeFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/TypeFilter.cs -------------------------------------------------------------------------------- /src/Hyperion/TypeFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/TypeFilterBuilder.cs -------------------------------------------------------------------------------- /src/Hyperion/ValueSerializers/BoolSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ValueSerializers/BoolSerializer.cs -------------------------------------------------------------------------------- /src/Hyperion/ValueSerializers/ByteArraySerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ValueSerializers/ByteArraySerializer.cs -------------------------------------------------------------------------------- /src/Hyperion/ValueSerializers/ByteSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ValueSerializers/ByteSerializer.cs -------------------------------------------------------------------------------- /src/Hyperion/ValueSerializers/CharSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ValueSerializers/CharSerializer.cs -------------------------------------------------------------------------------- /src/Hyperion/ValueSerializers/ConsistentArraySerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ValueSerializers/ConsistentArraySerializer.cs -------------------------------------------------------------------------------- /src/Hyperion/ValueSerializers/DateTimeOffsetSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ValueSerializers/DateTimeOffsetSerializer.cs -------------------------------------------------------------------------------- /src/Hyperion/ValueSerializers/DateTimeSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ValueSerializers/DateTimeSerializer.cs -------------------------------------------------------------------------------- /src/Hyperion/ValueSerializers/DecimalSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ValueSerializers/DecimalSerializer.cs -------------------------------------------------------------------------------- /src/Hyperion/ValueSerializers/DoubleSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ValueSerializers/DoubleSerializer.cs -------------------------------------------------------------------------------- /src/Hyperion/ValueSerializers/FloatSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ValueSerializers/FloatSerializer.cs -------------------------------------------------------------------------------- /src/Hyperion/ValueSerializers/FromSurrogateSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ValueSerializers/FromSurrogateSerializer.cs -------------------------------------------------------------------------------- /src/Hyperion/ValueSerializers/GuidSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ValueSerializers/GuidSerializer.cs -------------------------------------------------------------------------------- /src/Hyperion/ValueSerializers/Int16Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ValueSerializers/Int16Serializer.cs -------------------------------------------------------------------------------- /src/Hyperion/ValueSerializers/Int32Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ValueSerializers/Int32Serializer.cs -------------------------------------------------------------------------------- /src/Hyperion/ValueSerializers/Int64Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ValueSerializers/Int64Serializer.cs -------------------------------------------------------------------------------- /src/Hyperion/ValueSerializers/KnownTypeObjectSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ValueSerializers/KnownTypeObjectSerializer.cs -------------------------------------------------------------------------------- /src/Hyperion/ValueSerializers/NullSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ValueSerializers/NullSerializer.cs -------------------------------------------------------------------------------- /src/Hyperion/ValueSerializers/ObjectReferenceSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ValueSerializers/ObjectReferenceSerializer.cs -------------------------------------------------------------------------------- /src/Hyperion/ValueSerializers/ObjectSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ValueSerializers/ObjectSerializer.cs -------------------------------------------------------------------------------- /src/Hyperion/ValueSerializers/SByteSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ValueSerializers/SByteSerializer.cs -------------------------------------------------------------------------------- /src/Hyperion/ValueSerializers/SessionAwareByteArrayRequiringValueSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ValueSerializers/SessionAwareByteArrayRequiringValueSerializer.cs -------------------------------------------------------------------------------- /src/Hyperion/ValueSerializers/SessionAwareByteArrayRequiringValueSerializer.cs.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ValueSerializers/SessionAwareByteArrayRequiringValueSerializer.cs.orig -------------------------------------------------------------------------------- /src/Hyperion/ValueSerializers/SessionIgnorantValueSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ValueSerializers/SessionIgnorantValueSerializer.cs -------------------------------------------------------------------------------- /src/Hyperion/ValueSerializers/StringSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ValueSerializers/StringSerializer.cs -------------------------------------------------------------------------------- /src/Hyperion/ValueSerializers/SystemObjectSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ValueSerializers/SystemObjectSerializer.cs -------------------------------------------------------------------------------- /src/Hyperion/ValueSerializers/ToSurrogateSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ValueSerializers/ToSurrogateSerializer.cs -------------------------------------------------------------------------------- /src/Hyperion/ValueSerializers/TypeSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ValueSerializers/TypeSerializer.cs -------------------------------------------------------------------------------- /src/Hyperion/ValueSerializers/UInt16Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ValueSerializers/UInt16Serializer.cs -------------------------------------------------------------------------------- /src/Hyperion/ValueSerializers/UInt32Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ValueSerializers/UInt32Serializer.cs -------------------------------------------------------------------------------- /src/Hyperion/ValueSerializers/UInt64Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ValueSerializers/UInt64Serializer.cs -------------------------------------------------------------------------------- /src/Hyperion/ValueSerializers/UnsupportedTypeSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ValueSerializers/UnsupportedTypeSerializer.cs -------------------------------------------------------------------------------- /src/Hyperion/ValueSerializers/ValueSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/Hyperion/ValueSerializers/ValueSerializer.cs -------------------------------------------------------------------------------- /src/common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/common.props -------------------------------------------------------------------------------- /src/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/xunit.runner.json -------------------------------------------------------------------------------- /src/xunitSettings.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akkadotnet/Hyperion/HEAD/src/xunitSettings.props --------------------------------------------------------------------------------