【发布时间】:2012-07-06 18:43:09
【问题描述】:
我有一个 ASP.NET MVC 2 网站 (VS2010),我已升级到 ASP.NET MVC 3 (VS2012),这在本地 IIS7 上运行良好,但在发布它时,我在主机上遇到此异常:
Could not load file or assembly 'System.Web.WebPages, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.
经过一番搜索,我发现this 指出我应该在某些引用(包括 System.Web.WebPages)上设置 CopyLocal 并使用 VS2012 中的发布工具,但这会产生以下异常?
Could not load file or assembly 'System.Web.WebPages.Deployment, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.
我找不到任何部署 dll 来设置 copyLocal?
我该如何解决这个问题?
【问题讨论】:
标签: asp.net-mvc visual-studio iis hosting .net-assembly