我正在尝试使用Google驱动程序SDK将文件上传到Google云端硬盘。
DriveService service = new DriveService(new BaseClientService.Initializer()
{
HttpClientInitializer = credential,
ApplicationName = "Application Name",
});
在达到上述代码时,下面会发出异常抛出。
无法加载文件或程序集' Newtonsoft.Json,Version = 7.0.0.0, Culture = neutral,PublicKeyToken = 30ad4fe6b2a6aeed'或其中一个 依赖。定位程序集的清单定义没有 匹配程序集引用。 (HRESULT异常:0x80131040)
我尝试过更新,卸载并重新安装Newtonsoft.json。但都没有效果。尝试编辑web.config如下,但没有工作..
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="7.0.0.0" />
</dependentAssembly>