Я вчера запустил Windows Update и ввел некоторые проблемы, когда я пытаюсь выпустить новую версию моего проекта ASP.NET MVC 4.
Приложение компилируется и работает нормально локально, однако, когда я нажимаю версию до тестового сайта на моем веб-сервере, он упал с сообщением об ошибке:
System.Web.HttpCompileException: (0): error CS1705: Assembly 'App_Code, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' uses 'System.Web.Mvc, Version=4.0.0.1, Culture=neutral, PublicKeyToken=31bf3856ad364e35' which has a higher version than referenced assembly 'System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'
После некоторого исследования я обнаружил, что это связано с обновлением от 4.0.0.0 до 4.0.0.1. Я удалил dll System.Web.Mvc из моего проекта и прочитал dll с более поздней версией. Снова все работает локально, но не в Интернете. Затем я прошел через web.config и изменил любое упоминание о 4.0.0.0 - 4.0.0.1. Подобным образом это продолжает работать внутри страны, но выходит извне. Сообщение об ошибке:
Could not load file or assembly 'System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The located assembly manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040) 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.FileLoadException: Could not load file or assembly 'System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The located assembly manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040) 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.Mvc, 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].
Я считаю, что это имеет какое-то отношение к Elmah, которое я использую для обработки ошибок.
Я попытался переустановить из Nuget, как было предложено здесь: Обновление Windows заставило MVC3 и MVC4 перестать работать, но это не сработало, и я получаю ту же ошибку.
Добавлена информация: Сервер еще не обновлен, я обеспокоен тем, что обновление этого может привести к нарушению существующей версии в реальном времени.