从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版的所有存储服务.
展开Visual Studio中的引用部分并将所有Azure DLL标记为Copy Local =“True” – Azure SDK DLL需要包含在它们未进行GAC的bin目录中.
原文链接:https://www.f2er.com/windows/441245.html如果失败,请将程序集绑定重定向添加到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>