aqua - aqua-core-protobuf-net 5.5.1

Provides protobuf-net configuration for Aqua types.

PM> Install-Package aqua-core-protobuf-net -Version 5.5.1 -Source https://www.myget.org/F/aqua/api/v3/index.json

Copy to clipboard

> nuget.exe install aqua-core-protobuf-net -Version 5.5.1 -Source https://www.myget.org/F/aqua/api/v3/index.json

Copy to clipboard

> dotnet add package aqua-core-protobuf-net --version 5.5.1 --source https://www.myget.org/F/aqua/api/v3/index.json

Copy to clipboard
<PackageReference Include="aqua-core-protobuf-net" Version="5.5.1" />
Copy to clipboard
source https://www.myget.org/F/aqua/api/v3/index.json

nuget aqua-core-protobuf-net  ~> 5.5.1
Copy to clipboard

> choco install aqua-core-protobuf-net --version 5.5.1 --source https://www.myget.org/F/aqua/api/v2

Copy to clipboard
Import-Module PowerShellGet
Register-PSRepository -Name "aqua" -SourceLocation "https://www.myget.org/F/aqua/api/v2"
Install-Module -Name "aqua-core-protobuf-net" -RequiredVersion "5.5.1" -Repository "aqua" 
Copy to clipboard

Browse the sources in this package using Visual Studio or WinDbg by configuring the following symbol server URL: https://www.myget.org/F/aqua/api/v2/symbolpackage/


aqua-core

GitHub license Github Workflow

branch CI Build Codecov.io Codacy CodeFactor
main Github CI-Build Status codecov Codacy Badge CodeFactor
package nuget myget
aqua-core NuGet Badge MyGet Pre Release
aqua-core-newtonsoft-json NuGet Badge MyGet Pre Release
aqua-core-protobuf-net NuGet Badge MyGet Pre Release

Transform any object-graph into a dynamic, composed dictionaries like structure, holding serializable values and type information.

Aqua-core provides a bunch of serializable classes:

  • DynamicObject
  • TypeInfo
  • FieldInfo
  • PropertyInfo
  • MethodInfo
  • ConstructorInfo

Any object graph may be translated into a DynamicObject structure and back to it's original type using DynamicObjectMapper.

Sample

Mapping an object graph into a DynamicObject and then back to it's original type

Blog blog = new Blog
{
    Title = ".NET Blog",
    Description = "A first-hand look from the .NET engineering teams",
    Posts = new[]
    {
        new Post
        {
            Title = "Announcing .NET Core 1.0",
            Date = new DateTime(2016, 6, 27),
            Author = "rlander"
            Text =
                """
                We are excited to announce the release of .NET Core 1.0, ASP.NET Core 1.0 and
                Entity Framework Core 1.0, available on Windows, OS X and Linux!
                .NET Core is a cross-platform, open source, and modular .NET platform [...]
                """,
        },
        new Post
        {
            Title = "Happy 15th Birthday .NET!",
            Date = new DateTime(2017, 2, 13),
            Author = "bmassi",
            Text = "Today marks the 15th anniversary since .NET debuted to the world [...]",
        }
    }
}

DynamicObject dynamicObject = new DynamicObjectMapper().MapObject(blog);

Blog restoredBlog = new DynamicObjectMapper().Map(dynamicObject) as Blog;
  • .NETFramework 8.0
    • aqua-core (>= 5.5.1)
    • protobuf-net (>= 2.4.9)
  • .NETFramework 10.0
    • aqua-core (>= 5.5.1)
    • protobuf-net (>= 2.4.9)
  • .NETStandard 2.0
    • aqua-core (>= 5.5.1)
    • protobuf-net (>= 2.4.9)
    • System.Text.RegularExpressions (>= 4.3.1)
  • .NETStandard 2.1
    • aqua-core (>= 5.5.1)
    • protobuf-net (>= 2.4.9)
    • System.Text.RegularExpressions (>= 4.3.1)
  • .NETFramework 8.0: 8.0.0.0
  • .NETFramework 10.0: 10.0.0.0
  • .NETStandard 2.0: 2.0.0.0
  • .NETStandard 2.1: 2.1.0.0

Owners

Christof Senn

Authors

Christof Senn

Project URL

https://github.com/6bee/aqua-core

License

Unknown

Tags

protobuf protobuf-net proto2 proto3 binary serialization

Info

2249 total downloads
10 downloads for version 5.5.1
Download (90.57 KB)
Download symbols (161 KB)
Found on the current feed only

Package history

Version Size Last updated Downloads Mirrored?
5.5.1 90.57 KB Mon, 19 Jan 2026 21:18:54 GMT 10
5.5.0 90.56 KB Fri, 16 Jan 2026 12:43:50 GMT 17
5.5.0-alpha-014 90.63 KB Sat, 15 Nov 2025 17:41:08 GMT 39
5.5.0-alpha-013 90.85 KB Fri, 14 Nov 2025 11:04:35 GMT 33
5.5.0-alpha-012 90.86 KB Thu, 13 Nov 2025 23:53:11 GMT 33
5.5.0-alpha-011 78.18 KB Fri, 23 May 2025 11:37:23 GMT 99
5.5.0-alpha-010 78.18 KB Mon, 12 May 2025 21:44:40 GMT 93
5.5.0-alpha-009 78.17 KB Sun, 09 Mar 2025 20:03:41 GMT 83
5.5.0-alpha-008 78.19 KB Sun, 09 Mar 2025 17:09:51 GMT 98
5.5.0-alpha-007 78.17 KB Wed, 05 Mar 2025 16:12:29 GMT 91
5.5.0-alpha-006 78.17 KB Sun, 22 Dec 2024 14:39:44 GMT 87
5.5.0-alpha-005 78.14 KB Sun, 22 Dec 2024 12:53:10 GMT 94
5.4.2 79.94 KB Tue, 19 Nov 2024 22:57:55 GMT 111
5.4.1 72.03 KB Wed, 10 Jul 2024 12:14:34 GMT 114
5.4.0 72.01 KB Tue, 04 Jun 2024 13:32:19 GMT 114
5.3.0 47.08 KB Thu, 14 Sep 2023 02:19:51 GMT 1133