Files
mxpv-podsync/src/Podsync/Program.cs
T

21 lines
449 B
C#
Raw Normal View History

2016-12-11 21:16:48 -08:00
using System.IO;
2016-10-02 09:29:25 -04:00
using Microsoft.AspNetCore.Hosting;
namespace Podsync
{
public class Program
{
public static void Main(string[] args)
{
var host = new WebHostBuilder()
2017-02-20 11:20:22 -08:00
.UseKestrel()
2016-10-02 09:29:25 -04:00
.UseContentRoot(Directory.GetCurrentDirectory())
.UseIISIntegration()
.UseStartup<Startup>()
.Build();
host.Run();
}
}
}