signal2.0 z在vs 2012 中有问题啊

2012中在Nuget中添加了Microsoft.Owin.Host.SystemWeb之后也不能直接创建Owin Startup类;在网上找了相关资料自己手写了个Startup.cs代码如下

sing Microsoft.Owin;
using Owin;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
[assembly: OwinStartup(typeof(WebApplication9.Startup))]
namespace WebApplication9
{
public class Startup
{

    public void Configuration(IAppBuilder app)
    {
        Microsoft.AspNet.SignalR.StockTicker.Startup.ConfigureSignalR(app);
    }
}

}

web.config 中也添加了相应节点


但是还是没有注册hub类。。浏览器找不到signalr/hubs这个脚本。。这是怎么回事。。。求大神赐教啊。。折腾一天了。。救命啊

vs2010不支持signalr,原因是signalr需要.net 4.5