3

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

4

1 に答える 1

7

構築している.NETプロファイルが問題です。System.ServiceModel.Webは「クライアントプロファイル」では使用できません。Visual Studioでプロジェクトのプロパティを確認し、完全なプロファイル(つまり、「。NET Framework4クライアントプロファイル」ではなく「.NETFramework4」)に切り替えてから、再構築します。

于 2012-04-24T08:02:06.173 に答える