Fix dotnet myget npm registry link (#1223)

Fixes #1221
This commit is contained in:
Matt Jeanes 2017-12-18 16:18:52 +00:00 committed by Andrew Stanton-Nurse
parent eb2668e74e
commit 1a842e92ec
1 changed files with 2 additions and 2 deletions

View File

@ -22,14 +22,14 @@ npm install @aspnet/signalr-client
The CI build publishes the latest dev version of the JavaScript client to our dev npm registry as @aspnet/signalr-client. You can install the module as follows:
- Create an .npmrc file with the following line:
`@aspnet:registry=https://dotnet.myget.org/f/aspnetcore-ci-dev/npm/`
`@aspnet:registry=https://dotnet.myget.org/f/aspnetcore-dev/npm/`
- Run:
`npm install @aspnet/signalr-client`
Alternatively, if you don't want to create the .npmrc file run the following commands:
```
npm install msgpack5
npm install @aspnet/signalr-client --registry https://dotnet.myget.org/f/aspnetcore-ci-dev/npm/
npm install @aspnet/signalr-client --registry https://dotnet.myget.org/f/aspnetcore-dev/npm/
```
## Building from source