保存时编译不适用于 VS 2015 RC 中的 ASP.NET 5 个应用程序

Compile on save is not working for ASP.NET 5 apps in VS 2015 RC

我刚刚在干净的 Win 8.1 机器上安装了 Visual Studio 2015 RC,并从默认模板 Asp .NET 5 预览模板/网站创建了一个应用程序。

如果我点击 运行,Web 应用程序将启动,但是更改例如主控制器中的 ViewBag.Message 不会反映重新加载页面后浏览器中的更改。

    public ActionResult About()
    {
        ViewBag.Message = "Your application description page.";

        return View();
    }

我环顾四周,但找不到问题的原因。 IE11 和 Chrome 的行为相同。客户端缓存被禁用。这篇文章表明它应该有效:http://docs.asp.net/en/latest/tutorials/your-first-aspnet-application.html

我在这里错过了什么?

确保您没有在启动应用程序时进行调试。为了即时编译工作,应用程序必须在没有调试的情况下启动。