我写了这段代码来创建一个redis客户端实例
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using ServiceStack.Redis;
using ServiceStack;
class Program
{
static void Main(string[] args)
{
RedisClient a = new RedisClient();
.....
但是在尝试构建解决方案时,我收到了这个警告
'The referenced assembly "ServiceStack.Redis" could not be resolved because it has a dependency on "System.ServiceModel.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" which is not in the currently targeted framework ".NETFramework,Version=v4.0,Profile=Client". Please remove references to assemblies not in the targeted framework or consider retargeting your project.'
和错误
Error3 The type or namespace name 'RedisClient' could not be found (are you missing a using directive or an assembly reference?)
我已经包含了所需的 dll ServiceStack.Redis。有人可以解释如何解决这个问题,我无法理解警告以及需要做什么才能使代码正常工作。