当前位置:  开发笔记 > 开发工具 > 正文

入口点没有合适的"程序"类型

如何解决《入口点没有合适的"程序"类型》经验,为你挑选了0个好方法。

看起来每晚RC2版本的最新更新改变了程序启动的方式.自更新以来,我现在在运行以下命令时出现错误.

// "commands": {
//      "web": "Microsoft.AspNet.Server.Kestrel --server.urls http://localhost:1287"
// }

dnx --watch web

'Microsoft.AspNet.Server.Kestrel' does not contain a 'Program' type suitable for an entry point Stopped listening.

Startup.cs编译并具有以下方法.

public class Startup
{
    public void ConfigureServices(IServiceCollection services, IHostingEnvironment env)
    { ... }

    public void Configure(IApplicationBuilder app, IApplicationLifetime lifetime)
    { ... }
}

需要做些什么才能让程序启动最新的每晚构建?

这是一个重现问题的例子.https://github.com/roydukkey/moist/tree/stackoverflow-34615917

sdk:v1.0.0-rc2-16357

推荐阅读
帆侮听我悄悄说星星
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有