从Visual Studio发布基于云的应用程序(Web角色)后,应用程序在访问登录页面时出现以下错误。

无法加载文件或程序集“Microsoft.WindowsAzure.ServiceRuntime,版本= 1.8.0.0,区域性=中性,PublicKeyToken = 31bf3856ad364e35”或其依赖项之一。该系统找不到指定的文件。

在本地,相同的应用程序可以正常工作。发布站点时,我将Microsoft.WindowsAzure.ServiceRuntime Copy Local属性的引用保留为True。

我正在使用AzureSDK 2.0,并且在引用文件夹中具有版本2.0的所有存储服务的引用。

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





仍然出现上述错误。请提出解决问题的方法。

最佳答案

在Visual Studio中展开引用部分,并将所有Azure DLL标记为Copy Local =“True”-Azure SDK DLL必须包含在未GACed的bin目录中。

如果失败,则将程序集绑定(bind)重定向添加到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>

09-26 22:27