我刚刚将Visual Studio更新为2017年的最终版本.
我正在开发一个WebApi核心项目.
我正在开发一个WebApi核心项目.
每当我使用IIS Express启动它时,Google Chrome都会出现并继续加载到以下页面而不做任何回复
它出什么问题了?
The problem on github
解决方法
在WebApi Core上启用IISExpress:
1.启用IISIntegration组件:
安装Microsoft.AspNetCore.Server.IISIntegration包.
2.在项目根目录中编辑Program.cs:
var host = new WebHostBuilder() .UseKestrel() .UseContentRoot(Directory.GetCurrentDirectory()) .UseIISIntegration() // Add this line .UseStartup<Startup>() .Build();