20 lines
554 B
C#
20 lines
554 B
C#
|
using System;
|
||
|
using Microsoft.AspNetCore.Hosting;
|
||
|
using Microsoft.AspNetCore.Identity;
|
||
|
using Microsoft.Extensions.Configuration;
|
||
|
using Microsoft.Extensions.DependencyInjection;
|
||
|
using Props.Data;
|
||
|
using Props.Models;
|
||
|
|
||
|
[assembly: HostingStartup(typeof(Props.Areas.Identity.IdentityHostingStartup))]
|
||
|
namespace Props.Areas.Identity
|
||
|
{
|
||
|
public class IdentityHostingStartup : IHostingStartup
|
||
|
{
|
||
|
public void Configure(IWebHostBuilder builder)
|
||
|
{
|
||
|
builder.ConfigureServices((context, services) => {
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
}
|