asp.net – ‘Owin.IAppBuilder’不包含’MapSignalR’的定义

前端之家收集整理的这篇文章主要介绍了asp.net – ‘Owin.IAppBuilder’不包含’MapSignalR’的定义前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
错误

‘Owin.IAppBuilder’不包含’MapSignalR’的定义,并且没有扩展方法’MapSignalR’接受’Owin.IAppBuilder’类型的第一个参数可以找到(你缺少一个using指令或一个程序集引用?)

using Microsoft.Owin;
using Owin;

[assembly: OwinStartup(typeof(SignalRChat.Startup))]
namespace SignalRChat
{
    public class Startup
    {
        public void Configuration(IAppBuilder app)
        {
            // Any connection or hub wire up and configuration should go here
            app.MapSignalR();
        }
    }
}

任何帮助将不胜感激…

更新

signalR版本2.0.3
Microsoft Owin 2.0.2版
Owin 1.0.0版
Visual Studio 2012

解决方法

只安装这个nuget:

Install-Package Microsoft.AspNet.WebApi.OwinSelfHost

原文链接:https://www.f2er.com/aspnet/252766.html

猜你在找的asp.Net相关文章