Cartographer.Mapper 0.1.4

dotnet add package Cartographer.Mapper --version 0.1.4
                    
NuGet\Install-Package Cartographer.Mapper -Version 0.1.4
                    
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="Cartographer.Mapper" Version="0.1.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Cartographer.Mapper" Version="0.1.4" />
                    
Directory.Packages.props
<PackageReference Include="Cartographer.Mapper" />
                    
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 Cartographer.Mapper --version 0.1.4
                    
#r "nuget: Cartographer.Mapper, 0.1.4"
                    
#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 Cartographer.Mapper@0.1.4
                    
#: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=Cartographer.Mapper&version=0.1.4
                    
Install as a Cake Addin
#tool nuget:?package=Cartographer.Mapper&version=0.1.4
                    
Install as a Cake Tool

Cartographer.Mapper

AutoMapper-style object mapper for .NET 8/9/10 with profiles, fluent configuration, converters, inheritance support, global options, and DI integration.

Install

dotnet add package Cartographer.Mapper

Quick start

using Cartographer.Core.Abstractions;
using Cartographer.Core.Configuration;

public class UserProfile : Profile
{
    protected override void ConfigureMappings(IMapperConfigurationExpression cfg)
    {
        cfg.CreateMap<User, UserDto>()
            .ForMember(d => d.FullName, o => o.MapFrom(s => $"{s.FirstName} {s.LastName}"))
            .ForMember(d => d.Nickname, o => { o.Condition(s => !string.IsNullOrEmpty(s.Nickname)); o.MapFrom(s => s.Nickname); })
            .BeforeMap((s, d) => d.Trace = "before")
            .AfterMap((s, d) => d.Trace = "after")
            .ReverseMap();
    }
}

var config = new MapperConfiguration(cfg =>
{
    cfg.CreateMap<User, UserDto>();
    new UserProfile().Apply(cfg);
});

var mapper = config.CreateMapper();
var dto = mapper.Map<UserDto>(new User { FirstName = "Ada", LastName = "Lovelace" });

ASP.NET Core integration

using Cartographer.Core.DependencyInjection;
using Cartographer.Core.Configuration.Naming;
using Cartographer.Core.Configuration;

builder.Services.AddCartographer(cfg =>
{
    cfg.SourceNamingConvention = new SnakeCaseNamingConvention();
    cfg.DestinationNamingConvention = new PascalCaseNamingConvention();
    cfg.MaxDepth = 3;
    cfg.PreserveReferences = true;
    cfg.NullCollectionStrategy = NullCollectionStrategy.UseEmptyCollection;
    new UserProfile().Apply(cfg);
});

Features

  • Familiar API: CreateMap, ForMember (MapFrom, Ignore, Condition, PreCondition, ConvertUsing), ReverseMap.
  • Hooks: BeforeMap, AfterMap.
  • Inheritance: Include, IncludeBase.
  • Converters: value converters and type converters.
  • Global options: MaxDepth, PreserveReferences, NullCollectionStrategy.
  • Naming conventions and custom member matching strategies.
  • Attribute-based config: [MapFrom], [IgnoreMap].
  • Map into existing instances.
  • Expression-compiled delegates for performance.
  • DI extensions with profile scanning.
  • Multi-target: net8.0, net9.0, and net10.0.

Examples

  • Console sample: src/Cartographer.App.
  • Web APIs: example/Cartographer.Example.Api (net10/net9) and example/Cartographer.Example.Net8Api (net10/net8) with in-memory services/controllers showing DI + profiles + inheritance.

Package info

  • Package ID: Cartographer.Mapper
  • License: MIT
  • Repository: CartoGrapher
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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 is compatible.  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 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
0.1.4 90 3/20/2026
0.1.3 115 1/26/2026
0.1.2 103 1/26/2026
0.1.1 209 12/4/2025
0.1.0 200 12/4/2025