无法加载Microsoft.WindowsAzure.ServiceRuntime,Version = 1.8.0.0,…本地工作正常

前端之家收集整理的这篇文章主要介绍了无法加载Microsoft.WindowsAzure.ServiceRuntime,Version = 1.8.0.0,…本地工作正常前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
从visual studio发布基于云的应用程序(Web角色)后,应用程序在访问登录页面时出现以下错误.

无法加载文件或程序集“Microsoft.WindowsAzure.ServiceRuntime,Version = 1.8.0.0,Culture = neutral,PublicKeyToken = 31bf3856ad364e35”或其依赖项之一.该系统找不到指定的文件.

在本地相同的应用程序工作正常.在发布站点时,我在其属性中保留了Microsoft.WindowsAzure.ServiceRuntime Copy Local属性的引用.

我正在使用AzureSDK 2.0并在参考文件夹中引用了2.0版的所有存储服务.

我的web.config文件中也有以下内容.



仍然得到上述错误.请提出如何解决问题的建议.

展开Visual Studio中的引用部分并将所有Azure DLL标记为Copy Local =“True” – Azure SDK DLL需要包含在它们未进行GAC的bin目录中.

如果失败,请将程序集绑定重定向添加到web.config …

<dependentAssembly>
    <assemblyIdentity name="Microsoft.WindowsAzure.ServiceRuntime"
         publicKeyToken="31bf3856ad364e35" culture="neutral" />
    <bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
  </dependentAssembly>
原文链接:https://www.f2er.com/windows/441245.html

猜你在找的Windows相关文章