簡體   English   中英

嘗試使用端點時無法加載文件或程序集System.Web.Mvc

[英]Could not load file or assembly System.Web.Mvc when trying to use endpoint

我正在構建一個WebApi端點,並且已經在本地對其進行了測試,並且效果很好。 我已經將其安裝在服務器上,並指向它另一項服務,但是當它嘗試發送請求時,出現運行時錯誤。 當我檢查事件查看器的端點是否打開時,我發現此錯誤:

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

Could not load file or assembly 'System.Web.Mvc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.
at Microsoft.Web.Mvc.ViewEngineFix.PreAppStart()

我試過更改web.config中的版本號,甚至嘗試創建一個不由nuget管理的參考目錄來保存System.Web.Mvc.dll,但該方法也不起作用。

任何幫助是極大的贊賞!

因此最終導致的問題是缺少“丟失的” dll,因為在發行版本生成時,這些dll沒有被復制到bin文件夾中。 我找到了這個相關問題,並使用了答案中的建議。

TLDR; 基本上,我修復它的方式是手動復制每個dll,因為它說它丟失了,並跟蹤您必須移動的dll; 在我的情況下是4個dll。

在沒有引發相同的“ Missing”異常之后,請通過項目引用下拉菜單,在屬性選項卡中找到“ Copy Local”行,並將每個缺少的引用都設置為True。

要驗證它是否達到了預期的效果,請右鍵單擊該項目,然后單擊“卸載”。 然后再次右鍵單擊該項目,然后編輯csproj文件。 找到丟失的引用,並在“提示路徑”下確保其具有<Private>True</Private>字段。 重新加載項目,確保其生成,然后再次嘗試發布版本,並且dll現在應該位於bin文件夾中。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM