AutoMappic 0.5.0
See the version list below for details.
dotnet add package AutoMappic --version 0.5.0
NuGet\Install-Package AutoMappic -Version 0.5.0
<PackageReference Include="AutoMappic" Version="0.5.0" />
<PackageVersion Include="AutoMappic" Version="0.5.0" />
<PackageReference Include="AutoMappic" />
paket add AutoMappic --version 0.5.0
#r "nuget: AutoMappic, 0.5.0"
#:package AutoMappic@0.5.0
#addin nuget:?package=AutoMappic&version=0.5.0
#tool nuget:?package=AutoMappic&version=0.5.0
AutoMappic.Core
The AutoMappic.Core library contains the public-facing abstractions, attributes, and base classes for the AutoMappic v0.5.0 "Zero-Reflection" mapper.
Getting Started
This package is intended to be used by all consumer projects (APIs, Domain, Persistence) as it defines the shared mapping contracts and configuration attributes.
Install the package via NuGet:
dotnet add package AutoMappicAdd a
Profileto your project and define your mappings:using AutoMappic; public sealed class MappingProfile : Profile { public MappingProfile() { CreateMap<Source, Destination>(); } }Register your mappings in your
IServiceCollection:services.AddAutoMappic(typeof(MappingProfile).Assembly);
The runtime portion of this library is intentionally lightweight and 100% compatible with Native AOT and Aggressive Trimming environments.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | 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. |
-
net10.0
-
net9.0
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.