Harrison Deng
57f67391f1
After reconsidering where I want to take this project, I realized that a MPA is more fitting.
22 lines
631 B
C#
22 lines
631 B
C#
using System;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.AspNetCore.Identity.UI;
|
|
using Microsoft.EntityFrameworkCore;
|
|
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) => {
|
|
});
|
|
}
|
|
}
|
|
} |