mirror of
https://github.com/Queercon/QC14-Badge-Webview.git
synced 2024-11-03 01:10:07 -07:00
26 lines
588 B
C#
26 lines
588 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
|
|
namespace qcbadge
|
|
{
|
|
public class Program
|
|
{
|
|
public static void Main(string[] args)
|
|
{
|
|
var host = new WebHostBuilder()
|
|
.UseKestrel()
|
|
.UseContentRoot(Directory.GetCurrentDirectory())
|
|
.UseIISIntegration()
|
|
.UseStartup<Startup>()
|
|
.UseApplicationInsights()
|
|
.Build();
|
|
|
|
host.Run();
|
|
}
|
|
}
|
|
}
|