我在这里浏览了本教程:
http://www.asp.net/vnext/overview/aspnet-vnext/getting-started-with-aspnet-vnext-and-visual-studio

我正在执行第2部分的步骤7-“在浏览器仍然打开的情况下,打开Class1.cs并将消息文本更改为“来自ClassLibrary1的新消息!”。

不幸的是,在更改代码后,刷新浏览器之前是相同的。我必须重新编译才能使更改生效。

有什么想法吗?我想看到魔术的发生!

Windows 7 64位
Microsoft Visual Studio专业版14 CTP
版本14.0.21730.1 DP
Microsoft .NET Framework
版本4.5.50938

project.json:

{
    "dependencies": {
        "Helios": "0.1-alpha-build-0585",
        "Microsoft.AspNet.Mvc": "0.1-alpha-build-1268",
        "Microsoft.AspNet.Identity.Entity": "0.1-alpha-build-1059",
        "Microsoft.AspNet.Identity.Security": "0.1-alpha-build-1059",
        "Microsoft.AspNet.Security.Cookies": "0.1-alpha-build-0506",
        "Microsoft.AspNet.Server.WebListener": "0.1-alpha-build-0520",
        "Microsoft.AspNet.StaticFiles": "0.1-alpha-build-0443",
        "Microsoft.Data.Entity": "0.1-alpha-build-0863",
        "Microsoft.Data.Entity.SqlServer": "0.1-alpha-build-0863",
        "Microsoft.Framework.ConfigurationModel.Json": "0.1-alpha-build-0233",
        "Microsoft.VisualStudio.Web.BrowserLink.Loader": "14.0-alpha",
        "Classlibrary1": ""
    },
    "commands": {
        /* Change the port number when you are self hosting this application */
        "web": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.WebListener --server.urls http://localhost:5000"
    },
    "configurations": {
        "net45": {
            "dependencies": {
                "System.Data": "",
                "System.ComponentModel.DataAnnotations": ""
            }
        },
        "k10": {
        }
    }
}


保罗

最佳答案

您可能正在连接调试器。文件监视程序无法与附加的调试器一起使用。为什么?长话短说:IIS(快速)将重新启动以拾取程序集更改,因此不能与附加的调试器一起使用,因为它会终止您的调试会话。

在不调试的情况下启动网站,然后更改代码文件并刷新-发生了魔术。

以后的编辑:要使用调试启动应用程序,请使用Ctrl + F5Debug -> Start without debugging

关于asp.net-core - ASP.NET vNext-动态编译代码对我不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24082161/

10-13 08:16