このコードを作成して、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?)
必要なdllServiceStack.Redisを含めました。誰かがこの問題を回避する方法を説明できますか?警告とコードを機能させるために何をする必要があるか理解できません。