Подтвердить что ты не робот

Не удалось загрузить файл или сборку System.Web.WebPages.Razor, Version = 3.0.0.0 или одну из ее зависимостей

Я использую среду MVC 5, WCF и Unity в своем приложении.

При запуске службы WCF возникает ошибка ниже:

Server Error in '/' Application.

Could not load file or assembly 'System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.

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.IO.FileNotFoundException: Could not load file or assembly 'System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.

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.

Assembly Load Trace: The following information can be helpful to determine why the assembly 'System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' could not be loaded.


WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure logging.
To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].

Stack Trace: 


[FileNotFoundException: Could not load file or assembly 'System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.]
   System.Web.Mvc.PreApplicationStartCode.Start() +0

[InvalidOperationException: The pre-application start initialization method Start on type System.Web.Mvc.PreApplicationStartCode threw an exception with the following error message: Could not load file or assembly 'System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified..]
   System.Web.Compilation.BuildManager.InvokePreStartInitMethodsCore(ICollection`1 methods, Func`1 setHostingEnvironmentCultures) +556
   System.Web.Compilation.BuildManager.InvokePreStartInitMethods(ICollection`1 methods) +132
   System.Web.Compilation.BuildManager.CallPreStartInitMethods(String preStartInitListPath, Boolean& isRefAssemblyLoaded) +102
   System.Web.Compilation.BuildManager.ExecutePreAppStart() +153
   System.Web.Hosting.HostingEnvironment.Initialize(ApplicationManager appManager, IApplicationHost appHost, IConfigMapPathFactory configMapPathFactory, HostingEnvironmentParameters hostingParameters, PolicyLevel policyLevel, Exception appDomainCreationException) +516

[HttpException (0x80004005): The pre-application start initialization method Start on type System.Web.Mvc.PreApplicationStartCode threw an exception with the following error message: Could not load file or assembly 'System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified..]
   System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +9882460
   System.Web.HttpRuntime.EnsureFirstRequestInit(HttpContext context) +101
   System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) +254

Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.33440

Я добавил System.Web.WebPages.Razor, Version = 3.0.0.0 в проект WCF, по-прежнему сохраняется такая же ошибка.

Кто-нибудь знает, как разрешить эту ошибку?

4b9b3361

Ответ 1

Убедитесь, что ваш проект нацелен на .net 4.5, что все ссылки действительны и что веб-страницы AspNet.WebPages. * находятся в папке bin (Release/Debug).

valid refs

Вы также можете попытаться переустановить пакеты пакетов Microsoft.AspNet.WebPages, используя эту команду в консоли диспетчера пакетов

> Update-Package –reinstall Microsoft.AspNet.WebPages 

Ответ 2

Я столкнулся с точной ошибкой здесь (среди пары других пропущенных ссылок) в моей системе Win10 x64. Моя проблема была (я полагаю), была вызвана удалением чего-то из добавления/удаления, которое вырвало другие библиотеки.

После поисков решения в интернете у меня наконец-то получился ответ: fooobar.com/questions/259626/...

Загрузите и установите веб-страницы версии 2

Ответ 3

У меня была та же проблема, когда WCF показывал ошибку несвязанной сборки MVC (у меня есть несколько проектов MVC в решении, которые используют System.Web.WebPages.Razor, Version = 3.0.0.0). Я установил пакет Microsoft.AspNet.WebPages в проекте WCF, запустил proj WCF и все заработало. После этого я удалил все пакеты, связанные с Microsoft.AspNet.WebPages. Работало нормально.