Skip to content
This repository has been archived by the owner on Sep 13, 2022. It is now read-only.

This is a Proof of Concept repository which migrates legacy .NET Framework code to .NET Core. The purpose of this migration is to: (1) gain a deeper understanding of.NET Core, (2) discover issues in migrating legacy code to .NET Core, (3) test third-party libraries in a .NET Core environment, (4) share knowledge with the open source community. T…

License

Notifications You must be signed in to change notification settings

RandyDaddis/AutoMapper.Extensions.Microsoft.DependencyInjection

 
 

Repository files navigation

AutoMapper extensions for Microsoft.Extensions.DependencyInjection

Scans assemblies and:

  1. adds profiles to mapping configuration
  2. adds value resolvers, member value resolvers, type converters to the container.

To use, with an IServiceCollection instance:

services.AddAutoMapper();

or with a DependencyContext:

services.AddAutoMapper(DependencyContext.Default);

or one or more assemblies:

services.AddAutoMapper(assembly1, assembly2 /*, ...*/);

or marker types:

services.AddAutoMapper(type1, type2 /*, ...*/);

About

This is a Proof of Concept repository which migrates legacy .NET Framework code to .NET Core. The purpose of this migration is to: (1) gain a deeper understanding of.NET Core, (2) discover issues in migrating legacy code to .NET Core, (3) test third-party libraries in a .NET Core environment, (4) share knowledge with the open source community. T…

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 82.3%
  • PowerShell 17.7%