Ma.CustomMapper 2.0.0

dotnet add package Ma.CustomMapper --version 2.0.0
NuGet\Install-Package Ma.CustomMapper -Version 2.0.0
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="Ma.CustomMapper" Version="2.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Ma.CustomMapper --version 2.0.0
#r "nuget: Ma.CustomMapper, 2.0.0"
#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.
// Install Ma.CustomMapper as a Cake Addin
#addin nuget:?package=Ma.CustomMapper&version=2.0.0

// Install Ma.CustomMapper as a Cake Tool
#tool nuget:?package=Ma.CustomMapper&version=2.0.0

CustomMapper

Implement your mapper classes from IMapper<,> or from IAsyncMapper<,> interface.

Add following method to the project where you have mapper classes, and call it when program starts to register all mappers:

/// <summary>
/// Register all custom mapper classes.
/// </summary>
public static void RegisterMappers()
{
    var mapperInterfaceTypes = new[] { typeof(IMapper<,>), typeof(IAsyncMapper<,>) };

    var mapperTypes = Assembly
        .GetExecutingAssembly()
        .GetTypes()
        .Where(m => m.GetInterfaces().Any(i => i.IsGenericType
            && mapperInterfaceTypes.Contains(i.GetGenericTypeDefinition())));

    var customMapper = kernel.Get<ICustomMapper>();
    foreach (Type mapperType in mapperTypes)
    {
    dynamic mapper = kernel.Get(mapperType);
    customMapper.Configurations.AddMapper(mapper);
    }
}

Then you can inject CustomMapper as an instance of ICustomMapper, or initialize and call one Map or MapAsync methods which suits you. Both of these methods should work for normal and async mappers.

You can find NuGet package for this project here.

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  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. 
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
2.0.0 151 5/17/2023
1.1.2 799 1/7/2019
1.1.1 662 12/11/2018
1.1.0 661 12/5/2018
1.0.0 957 3/29/2017

Migrate to .Net 7