Asp.Net 5

介绍asp.net 5运行时的,蛮好,百度上搜不到的第一手资料
ASP.NET 5 – A Deep Dive into the ASP.NET 5 Runtime

上传文件新类型:IFormFile
以前的是:HttpPostedFileBase

获取程序根路径:

IHostingEnvironment host = (IHostingEnvironment)base.Context.ApplicationServices.GetService(typeof(IHostingEnvironment));
var rootDic = host.WebRootPath;
原文地址:https://www.cnblogs.com/hualongbei/p/5080515.html