Add bundled aspnetcore runtime framework versions

- Add integration test for implicit Microsoft.AspNetCore.App versions
This commit is contained in:
John Luo 2018-04-18 00:31:15 -07:00
parent e1c8cd6350
commit 441a470f54
6 changed files with 315 additions and 3 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;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
namespace TestWebAppSimple
{
public class Program
{
public static void Main(string[] args)
{
CreateWebHostBuilder(args).Build().Run();
}
public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
WebHost.CreateDefaultBuilder(args)
.UseStartup<Startup>();
}
}