2

I am trying to use Authentication Plugin of ServiceStack. I added NuGet packages for ServiceStack 4.0.11 but I am unable to find DLL ServiceStack.ServiceInterface which contains the AuthService and Auth classes. I think Authentication Plugin is dependent on this DLL. How can i add ServiceStack.ServiceInterface to my project?

Haider
  • 1,488
  • 2
  • 15
  • 29

1 Answers1

4

Sounds like you might have a version mismatch. That dll has been merged to the main one. Per ServiceStack v4 release notes:

ServiceStack.Interfaces NuGet project created and ServiceInterface has been merged into ServiceStack

kampsj
  • 3,139
  • 5
  • 34
  • 56
  • 2
    You are right. They have renamed the classes as well from AuthService to AuthenticateService and Auth to Authenticate. But they are still mentioning old class names in online documentation. – Haider Feb 20 '14 at 15:42