asp.net-mvc – MVC3部署依赖问题

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – MVC3部署依赖问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我刚刚尝试在我们的IIS7托管环境中部署一个MVC3应用程序,但是我正在提交以下异常:

Could not load type
‘Microsoft.Web.Infrastructure.DynamicModuleHelper.DynamicModuleUtility’
from assembly
‘Microsoft.Web.Infrastructure,
Version=1.0.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.TypeLoadException: Could not
load type
‘Microsoft.Web.Infrastructure.DynamicModuleHelper.DynamicModuleUtility’
from assembly
‘Microsoft.Web.Infrastructure,
PublicKeyToken=31bf3856ad364e35’.

有什么建议么?

该应用程序没有被bin部署,因为我已经在Web服务器本身上安装了ASP.Net网页和MVC3。

解决方法

这是因为Microsoft.Web.Infrastructure不在您的GAC中。您需要将此引用添加到您的项目中。右键单击引用并转到属性,然后将副本设置为本地为true。

输出(忽略NINject和NCU):

原文链接:https://www.f2er.com/aspnet/252959.html

猜你在找的asp.Net相关文章