我正在为我的 MVC3 Web 应用程序使用 ACS 身份验证。它在我的本地机器上运行良好。但是当我将其上传到 Azure 时。我收到此错误。我设置了 CopyLocal=True ,请帮忙

Unable to find assembly 'Microsoft.IdentityModel, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.
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.Runtime.Serialization.SerializationException: Unable to find assembly 'Microsoft.IdentityModel, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.

Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

最佳答案

更多信息。复制本地,即。确保 Microsoft.IdentityModel.dll 位于 bin 目录中,除非您的代码使用 RoleEnvironment API,否则将起作用。如果是这种情况,那么您将遇到以下已知问题:

http://msdn.microsoft.com/en-us/library/windowsazure/hh403974.aspx

在这种情况下,Microsoft.IdentityModel 将需要存在于 Azure VM 的 GAC 中。为此,请使用启动任务。这篇文章描述了实现此目的的两种方法:

http://blogs.infosupport.com/adding-assemblies-to-the-gac-in-windows-azure/

关于.net - 无法在 azure 上找到程序集 'Microsoft.IdentityModel"错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10166114/

10-17 02:49