简体   繁体   中英

Could not load file or assembly 'Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'

After deploying website on IIS, I am getting error. I have one main directory and then one inside of it and trying to access second one which is using .NET Framework Version 3.5, parent one using .NET Framework 4.0.

Please help

I got answer: https://www.mindstick.com/Forum/34108/could-not-load-file-or-assembly-microsoft-web-infrastructure-version-1-0-0-0-culture-neutral-publickeytoken-31bf3856ad364e35-or-one-of-its-dependencies-the-system-cannot-find-the-file-specified

added following references

dd the following references to the project:

Microsoft.Web.Infrastructure
System.Web.Razor
System.Web.WebPages.Razor
System.Web.WebPages.Deployment

Set the property Copy Local to True for the following references:

System.Web.Helpers
System.Web.MVC
System.Web.WebPages
Microsoft.Web.Infrastructure
System.Web.Razor
System.Web.WebPages.Razor
System.Web.WebPages.Deployment

Some web servers (such as certain cloud or virtual servers) don't include all the components of the ASP/.NET framework. You therefore need to set Copy Local = True for all your references so that these are copied across when you publish/deploy

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

Related Question Could not load file or assembly 'Microsoft.Owin, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' Could not load file or assembly 'Microsoft.Owin, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35 'Could not load file or assembly 'Microsoft.ServiceBus, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies Could not load file or assembly 'Microsoft.CodeAnalysis, version= 1.3.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependenc Could not load file or assembly 'System.Web.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' Could not load file or assembly 'System.Web.Razor, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies Could not load file or assembly 'Microsoft.Practices.EnterpriseLibrary.Common, Version=6.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or Could not load file or assembly 'Microsoft.Owin, Version=2.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies Could not load file or assembly 'Microsoft.Data.OData, Version=5.6.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies Could not load file or assembly 'System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM