Missing namespace ServiceClient (ServiceStack.ServiceClient.Web) using VS2013 with ServiceStack.Client package v.4.0.3

Viewed 1959

I'm fairly new to C#, Visual Studio, and totally new to ServiceStack. I'm trying to create a ServiceStack.ServiceClient.Web.JsonServiceClient object, but I get the error:

The type or namespace name 'ServiceClient' does not exist in the namespace
'ServiceStack' (are you missing an assembly reference?)

I have used the nuGet add-on's Library Package Manager to install the "Service Clients for ServiceStack" v4.0.3 package (id:ServiceStack.Client), verified that my target framerwork is ".NET Framework 4.5", and included

using ServiceStack.ServiceClient.Web;

at the top of my code. What am I missing?

Thanks.

1 Answers
Related