构建期间的未知命名空间(但是intellisense知道它)

时间:2012-12-19 13:42:56

标签: c# asp.net-mvc-3 visual-studio intellisense signalr

我目前正在与SignalR合作开展一个项目。在我的生产服务器上,它遗漏了~/signalr/hubs中自动生成的js文件。 我想尝试这个解决方案: SignalR not working on production server

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

我用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?) 

有人知道为什么会这样,以及如何解决问题?非常感谢提前!

1 个答案:

答案 0 :(得分:6)

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

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

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

intellisense建议您使用扩展方法这一事实并不意味着项目具有正常工作所需的参考。