SES-70 Added Automapper and Profiles #16
@ -13,6 +13,8 @@
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="AutoMapper" Version="10.1.1" />
|
||||
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="8.1.0" />
|
||||
<PackageReference Include="Microsoft.AspNetCore.SpaServices.Extensions" Version="5.0.0" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.0" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.0">
|
||||
|
@ -7,6 +7,7 @@ using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using Microsoft.Extensions.Hosting;
|
||||
using AutoMapper;
|
||||
using SessionCompanion.Configurations;
|
||||
using SessionCompanion.Database;
|
||||
using SessionCompanion.Hubs;
|
||||
@ -32,6 +33,7 @@ namespace SessionCompanion
|
||||
Configuration.GetConnectionString("DefaultConnection")));
|
||||
services.AddRepositories();
|
||||
services.AddServices();
|
||||
services.AddAutoMapper(typeof(Startup));
|
||||
services.AddSignalR();
|
||||
// In production, the Angular files will be served from this directory
|
||||
services.AddSpaStaticFiles(configuration =>
|
||||
|
Loading…
Reference in New Issue
Block a user