You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
873 B
27 lines
873 B
using Mapster;
|
|
using MapsterMapper;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.DependencyModel;
|
|
using System.Reflection;
|
|
|
|
namespace Znyc.CloudCar.Core.Config
|
|
{
|
|
/// <summary>
|
|
/// Mapster
|
|
/// </summary>
|
|
public static class MapsterSetup
|
|
{
|
|
public static void AddMapsterSetup(this IServiceCollection services)
|
|
{
|
|
if (services == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(services));
|
|
}
|
|
Assembly[] assemblies = DependencyContext.Default.RuntimeLibraries
|
|
.Where(x => x.Name.StartsWith("Znyc.CloudCar"))
|
|
.Select(x => Assembly.Load(new AssemblyName(x.Name))).ToArray();
|
|
services.AddScoped<IMapper>(sp => new Mapper());
|
|
TypeAdapterConfig.GlobalSettings.Scan(assemblies);
|
|
}
|
|
}
|
|
}
|
|
|