2

我目前正在使用 SignalR 进行一个项目。在我的生产服务器上,它缺少一个自动生成的 .js 文件~/signalr/hubs。我想试试这个解决方案: SignalR not working on production server

但是当我尝试将此行添加到我的application_start方法中时global.asax,我的项目将不再构建。虽然智能感知知道并建议扩展方法!

我用using SignalR;. 我尝试将其作为扩展方法调用,并将其作为静态方法调用,并将对象实例作为第一个参数。确切的错误消息:

作为扩展方法调用时:

Error   1   'System.Web.Routing.RouteCollection' does not contain a definition for 'MapHubs' and no extension method 'MapHubs' accepting a first argument of type 'System.Web.Routing.RouteCollection' could be found (are you missing a using directive or an assembly reference?)

作为静态方法调用时:

Error   1   The type or namespace name 'RouteExtensions' does not exist in the namespace 'SignalR' (are you missing an assembly reference?) 

有谁知道为什么会发生这种情况以及如何解决这个问题?提前谢谢了!

4

1 回答 1

6

我很确定这可能是以下原因之一:

  • 您的项目需要对未添加到项目中的程序集的引用。
  • 您的项目是否使用与引用程序集兼容的 .NET Framework 版本?

根据您提供的信息,很难确定确切的原因,但我相信我为您提供了一些有用的提示。

智能感知向您建议任何类似扩展方法的事实并不意味着该项目具有正常工作所需的引用。

于 2012-12-19T14:11:46.817 回答