Skip to content

Instantly share code, notes, and snippets.

@mikebrind
Last active September 2, 2016 14:00
Show Gist options
  • Save mikebrind/661a614cdf320e1f5b4566f6a66a2f01 to your computer and use it in GitHub Desktop.
Save mikebrind/661a614cdf320e1f5b4566f6a66a2f01 to your computer and use it in GitHub Desktop.
using Microsoft.AspNetCore.Hosting;
using System.IO;
namespace IHostingEnvironmentExample
{
public class Program
{
public static void Main(string[] args)
{
var host = new WebHostBuilder()
.UseKestrel()
.UseContentRoot(Directory.GetCurrentDirectory())
.UseWebRoot("www")
.UseIISIntegration()
.UseStartup<Startup>()
.Build();
host.Run();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment