0

When i run following command in package manager console:

install-package Thinktecture.IdentityServer3

I am getting error:

Install-Package : Unable to find package 'Thinktecture.IdentityServer3' At line:1 char:16 + install-package <<<< Thinktecture.IdentityServer3 + CategoryInfo : NotSpecified: (:) [Install-Package], Exception + FullyQualifiedErrorId : NuGetCmdletUnhandledException,NuGet.PackageManagement.PowerShellCmdlets.InstallPackageCommand

I am following this tutorial to secure my restful api- https://identityserver.github.io/Documentation/docs/overview/simplestOAuth.html

and using visual studio 2015 express for web.

JSDBroughton
  • 3,966
  • 4
  • 32
  • 52
Sahil Sharma
  • 3,847
  • 6
  • 48
  • 98

1 Answers1

1

It should be install-package IdentityServer3

Check the latest tutorial here https://identityserver.github.io/Documentation/docsv2/overview/mvcGettingStarted.html

rawel
  • 2,923
  • 21
  • 33
  • 1
    Yeah, they dropped the Thinktecture prefix mid 2015. The documentation you are looking at for 1.x, latest tutorial for OAuth is: https://identityserver.github.io/Documentation/docsv2/overview/simplestOAuth.html – Scott Brady Jul 05 '16 at 08:55