mirror of
https://github.com/jcreek/aspnetcore5-with-postgres-identity-serilog-elasticsearch.git
synced 2026-07-13 02:43:45 +00:00
21 lines
641 B
C#
21 lines
641 B
C#
using System;
|
|
using My.ProjectName.Data;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.AspNetCore.Identity.UI;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
[assembly: HostingStartup(typeof(My.ProjectName.Areas.Identity.IdentityHostingStartup))]
|
|
namespace My.ProjectName.Areas.Identity
|
|
{
|
|
public class IdentityHostingStartup : IHostingStartup
|
|
{
|
|
public void Configure(IWebHostBuilder builder)
|
|
{
|
|
builder.ConfigureServices((context, services) => {
|
|
});
|
|
}
|
|
}
|
|
} |