Can't find Microsoft.AspNet.SignalR.Server 3.0

2019-03-02 09:05发布

I am having trouble referencing package: "Microsoft.AspNet.SignalR.Server": "3.0.0-beta7" - the only one I can install is the 'beta5' version..

I have seen other examples online where people do reference this 'beta7' package but I can't seem to find it?!

Below an image of my current project.json - any help is much appreciated..

enter image description here

1条回答
对你真心纯属浪费
2楼-- · 2019-03-02 09:18

You need to add the aspnetmaster feed to your Nuget sources.

The source is https://www.myget.org/F/aspnetmaster/api/v3/index.json

Either add it to your NuGet.config file (per-solution nuget source) like this:

<add key="aspnetmaster" value="https://www.myget.org/F/aspnetmaster/api/v3/index.json" />

Alternatively, add it to your global sources in Visual Studio options.

查看更多
登录 后发表回答