update to rc2

This commit is contained in:
Tommy Parnell
2016-06-10 20:59:18 -04:00
parent a0075427fe
commit f129025596
31 changed files with 6880 additions and 22919 deletions

View File

@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Hosting;
namespace AzureTableStorageCacheSample
{
public class Program
{
public static void Main(string[] args)
{
var host = new WebHostBuilder()
.UseKestrel()
.UseContentRoot(Directory.GetCurrentDirectory())
.UseIISIntegration()
.UseStartup<Startup>()
.Build();
host.Run();
}
}
}