2021-04-08 02:03:17 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
using Microsoft.AspNetCore;
|
|
|
|
|
|
using Microsoft.AspNetCore.Hosting;
|
|
|
|
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
|
|
2021-08-15 19:09:01 +01:00
|
|
|
|
namespace isnd
|
2021-04-08 02:03:17 +01:00
|
|
|
|
{
|
|
|
|
|
|
public class Program
|
|
|
|
|
|
{
|
|
|
|
|
|
public static void Main(string[] args)
|
|
|
|
|
|
{
|
2022-06-19 21:40:31 +01:00
|
|
|
|
var builder = CreateBuilder(args);
|
|
|
|
|
|
builder.Build().Run();
|
2021-04-08 02:03:17 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
2022-06-19 21:40:31 +01:00
|
|
|
|
public static IWebHostBuilder CreateBuilder(string[] args) =>
|
2021-04-08 02:03:17 +01:00
|
|
|
|
WebHost.CreateDefaultBuilder(args)
|
|
|
|
|
|
.UseStartup<Startup>()
|
2022-06-19 21:40:31 +01:00
|
|
|
|
;
|
2021-04-08 02:03:17 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|