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

2019-03-02 08:42发布

问题:

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..

回答1:

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.