1
0
mirror of https://github.com/mxpv/podsync.git synced 2024-05-11 05:55:04 +00:00
Files
mxpv-podsync/src/Podsync/Program.cs

21 lines
491 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-01-04 11:32:04 -08:00
.UseKestrel(options => options.AddServerHeader = false)
2016-10-02 09:29:25 -04:00
.UseContentRoot(Directory.GetCurrentDirectory())
.UseIISIntegration()
.UseStartup<Startup>()
.Build();
host.Run();
}
}
}