5

我的项目使用 Newtonsoft.json V4.5。现在我需要在我的项目中集成 twitter oAuth。

我决定使用 Tweetsharp.dll 进行集成。遇到了 Newtonsoft.Json 的依赖冲突问题,即 Tweetsharp 需要 Newtonsoft.json 3.5。

问题是我无法从我的项目中替换我较新版本的 Newtonsoft.Json,因为它会影响其他功能。

请帮我解决这个问题。

Server Error in '/' Application.

 Could not load file or assembly 'Newtonsoft.Json, Version=3.5.0.0, Culture=neutral,         PublicKeyToken=30ad4fe6b2a6aeed' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)

  Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

  Exception Details: System.IO.FileLoadException: Could not load file or assembly 'Newtonsoft.Json, Version=3.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)

 Source Error: 


 Line 188:            if (CallbackUrl != null && CallbackUrl.Trim().Length > 0)
 Line 189:            {
 Line 190:                twitter =     FluentTwitter.CreateRequest().Configuration.UseHttps().Authentication.GetRequestToken(ConsumerKey, ConsumerSecret, CallbackUrl);
 Line 191:            }
 Line 192:            else

 Source File: C:\Users\hnarikkoden\Desktop\Socxo\B2\App_Start\TwitterInfo.cs    Line: 190 

  Assembly Load Trace: The following information can be helpful to determine why the   assembly 'Newtonsoft.Json, Version=3.5.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed' could not be loaded.
4

1 回答 1

1

您无法同时引用这两个库,因此您最好的方法是:

- 编辑 TweetSharp 项目,因为它是开源的,并尝试自己“升级”它

-在TweetSharp Github上发布问题并要求更新

于 2013-03-21T10:22:29.247 回答