KISS.MessagePack 1.0.1

dotnet add package KISS.MessagePack --version 1.0.1
                    
NuGet\Install-Package KISS.MessagePack -Version 1.0.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="KISS.MessagePack" Version="1.0.1">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="KISS.MessagePack" Version="1.0.1" />
                    
Directory.Packages.props
<PackageReference Include="KISS.MessagePack">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add KISS.MessagePack --version 1.0.1
                    
#r "nuget: KISS.MessagePack, 1.0.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package KISS.MessagePack@1.0.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=KISS.MessagePack&version=1.0.1
                    
Install as a Cake Addin
#tool nuget:?package=KISS.MessagePack&version=1.0.1
                    
Install as a Cake Tool

KISS MessagePack Source Generator

NuGet License: MIT

A lightweight C# source generator that automatically generates MessagePack serialization attributes for your classes. Following the KISS principle (Keep It Simple, Stupid), this generator eliminates the need to manually add MessagePack attributes to your data classes.

Features

  • 🚀 Zero Runtime Dependencies: Pure source generator with no runtime overhead
  • 🎯 Simple Usage: Just add one attribute to your class
  • 🔧 Automatic Key Assignment: Generates sequential MessagePack keys automatically
  • 📦 Roslyn-Based: Uses the latest C# source generator technology
  • 🌐 .NET Standard 2.0: Compatible with .NET Framework, .NET Core, and .NET 5+

Installation

Install the package via NuGet Package Manager:

dotnet add package KISS.MessagePack

Or via Package Manager Console:

Install-Package KISS.MessagePack

Usage

Basic Example

  1. Mark your class with the [MessagePackObjectGenerator] attribute:
using KISS.MessagePack;

[MessagePackObjectGenerator]
public partial class Person
{
    public string FirstName { get; set; }
    public string LastName { get; set; }
    public int Age { get; set; }
    public DateTime BirthDate { get; set; }
}
  1. The source generator will automatically create the MessagePack attributes:
// Generated code (Person.MessagePack.g.cs)
using MessagePack;

[MessagePackObject]
public partial class Person
{
    [Key(0)]
    public string FirstName { get; set; }

    [Key(1)]
    public string LastName { get; set; }

    [Key(2)]
    public int Age { get; set; }

    [Key(3)]
    public DateTime BirthDate { get; set; }
}

Requirements

  • .NET Standard 2.0 or higher
  • C# 9.0 or later (for source generators)
  • MessagePack for C# package (for the actual serialization)

xUnit Testing Integration

KISS.MessagePack is fully compatible with xUnit testing framework and .NET 8.0. The source generator works seamlessly in test projects.

Setting up xUnit Tests

  1. Create a test project targeting .NET 8.0:
<Project Sdk="Microsoft.NET.Sdk">
  <PropertyGroup>
    <TargetFramework>net8.0</TargetFramework>
    <IsPackable>false</IsPackable>
    <IsTestProject>true</IsTestProject>
  </PropertyGroup>

  <ItemGroup>
    <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
    <PackageReference Include="xunit" Version="2.6.2" />
    <PackageReference Include="xunit.runner.visualstudio" Version="2.5.3" />
    <PackageReference Include="MessagePack" Version="2.5.198" />
  </ItemGroup>

  <ItemGroup>
    <ProjectReference Include="..\KISS.MessagePack\KISS.MessagePack.csproj"
                      OutputItemType="Analyzer"
                      ReferenceOutputAssembly="true" />
  </ItemGroup>
</Project>
  1. Create test models:
[MessagePackObjectGenerator]
public partial class Person
{
    public string FirstName { get; set; } = string.Empty;
    public string LastName { get; set; } = string.Empty;
    public int Age { get; set; }
    public DateTime BirthDate { get; set; }
}
  1. Write xUnit tests:
[Fact]
public void Person_Serialize_SerializesCorrectly()
{
    // Arrange
    var person = new Person
    {
        FirstName = "John",
        LastName = "Doe",
        Age = 30,
        BirthDate = new DateTime(1993, 5, 15)
    };

    // Act
    byte[] serialized = person.Serialize();
    var deserializedPerson = MessagePackExtensions.Deserialize<Person>(serialized);

    // Assert
    Assert.NotNull(serialized);
    Assert.NotNull(deserializedPerson);
    Assert.Equal(person.FirstName, deserializedPerson.FirstName);
    Assert.Equal(person.LastName, deserializedPerson.LastName);
    Assert.Equal(person.Age, deserializedPerson.Age);
    Assert.Equal(person.BirthDate, deserializedPerson.BirthDate);
}

How It Works

  1. The source generator scans your code for classes marked with [MessagePackObjectGenerator]
  2. For each marked class, it generates a partial class with MessagePack attributes
  3. Properties and fields are automatically assigned sequential [Key(n)] attributes
  4. The generated code is compiled alongside your project

Limitations and Known Issues

Current Limitations

  1. Complex Nested Collections: The current version has limitations with deeply nested collection scenarios. Simple collections like List<string> work fine, but complex nested structures may require manual MessagePack attribute configuration.

  2. Generated Class Approach: The generator creates separate *MessagePackGenerated classes rather than adding attributes directly to your original classes. This means:

    • You work with generated proxy classes for serialization
    • Implicit conversion operators handle the conversion between original and generated classes
    • Extension methods provide convenient Serialize() and Deserialize<T>() methods

Supported Scenarios

Fully Supported:

[MessagePackObjectGenerator]
public partial class Person
{
    public string Name { get; set; }           // ✅ Simple properties
    public int Age { get; set; }               // ✅ Value types
    public DateTime BirthDate { get; set; }    // ✅ DateTime
    public List<string> Skills { get; set; }   // ✅ Simple collections
    public string? Description { get; set; }   // ✅ Nullable reference types
    public int? CategoryId { get; set; }       // ✅ Nullable value types
}

⚠️ Limited Support:

[MessagePackObjectGenerator]
public partial class ComplexModel
{
    // May require manual MessagePack configuration for complex scenarios
    public Dictionary<string, List<CustomObject>> ComplexData { get; set; }
    public List<Dictionary<int, string[]>> NestedCollections { get; set; }
}

Workarounds

For complex scenarios not fully supported by the generator, you can:

  1. Use manual MessagePack attributes on specific properties
  2. Break down complex structures into simpler, generator-friendly classes
  3. Use the generated classes as a starting point and customize as needed

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Changelog

v1.0.0

  • Initial release
  • Basic MessagePack attribute generation
  • Support for classes, properties, and fields
  • Automatic key assignment
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.1 146 7/2/2025
1.0.0 143 7/2/2025

v1.0.1: Updated documentation - simplified README by removing Advanced Usage section for clearer, more focused documentation.