34 lines
992 B
C#
34 lines
992 B
C#
|
using HanyadikHetVan.Data;
|
||
|
using IdentityServer4.Models;
|
||
|
using Microsoft.AspNetCore.Hosting;
|
||
|
using Microsoft.EntityFrameworkCore;
|
||
|
using Microsoft.Extensions.DependencyInjection;
|
||
|
using Microsoft.Extensions.Hosting;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace HanyadikHetVan
|
||
|
{
|
||
|
public class Program
|
||
|
{
|
||
|
public static async Task Main(string[] args)
|
||
|
{
|
||
|
var host = CreateHostBuilder(args).Build();
|
||
|
|
||
|
using (var scope = host.Services.CreateScope())
|
||
|
{
|
||
|
var context = scope.ServiceProvider.GetRequiredService<ApplicationDbContext>();
|
||
|
await context.Database.MigrateAsync();
|
||
|
}
|
||
|
|
||
|
await host.RunAsync();
|
||
|
}
|
||
|
|
||
|
public static IHostBuilder CreateHostBuilder(string[] args) =>
|
||
|
Host.CreateDefaultBuilder(args)
|
||
|
.ConfigureWebHostDefaults(webBuilder =>
|
||
|
{
|
||
|
webBuilder.UseStartup<Startup>();
|
||
|
});
|
||
|
}
|
||
|
}
|