9
A
回答
10
我看到你提供自己的答案,但另一種解決方案是一個<runtime>
元素重定向依賴組件和指向正確的一個來更新你的web.config:
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
請注意,更新來自NuGet的項目對大多數程序集自動執行相同的操作。
5
在Solution Explorer中,單擊參考> System.Web.Mvc。點擊屬性並設置Copy Local = True。
這樣,您將確保在您的項目中獲得正確版本的MVC,而不依賴於GAC中安裝的任何版本。這種方法還使您能夠部署MVC DLL。
2
這解決了這個事情對我來說...
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Web.Abstractions" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Routing" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.0.0" newVersion="4.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="0.0.0.0-4.0.0.1" newVersion="4.0.0.1" />
</dependentAssembly>
</assemblyBinding>
</runtime>
+0
請給你的代碼添加一些解釋。 –
相關問題
- 1. 'Class'含糊不清
- 2. 約束中含糊不清的類型變量`f0':Haskell
- 3. 類型...含糊不清,沒有更多上下文
- 4. 含糊不清的暗示
- 5. 引用xml _ **** _ ****含糊不清
- 6. BC30554:'ProfileCommon'含糊不清
- 7. 含糊不清的圖案
- 8. SQL列名含糊不清
- 9. 警告:refname'xxx'含糊不清
- 10. C++運算符含糊不清
- 11. 防止含糊不清語法
- 12. 會員nci的請求含糊不清
- 13. XSL含糊不清的規則混淆
- 14. 話題交換含糊不清RabbitMQ
- 15. 方法接收器含糊不清
- 16. Groovy含糊不清的方法重載
- 17. 約束中含糊不清的類型變量'blah'...如何修復?
- 18. 表達式類型'DataRequest'含糊不清,沒有更多的上下文Swift 3
- 19. 在抽象類中克服鑽石含糊不清
- 20. Haskell protobuf:含糊類型變量
- 21. 爲什麼這個調用隱含地含糊不清?
- 22. 不含糊Subimplicits
- 23. 如何從System.Web.Mvc.ViewPage
- 24. 模糊不清的TextView模糊佈局
- 25. 如何重寫這個語法,使其不再含糊不清
- 26. iPhone UIComponents模糊不清@ 1x
- 27. 「構造函數......含糊不清」是什麼意思?
- 28. mysql錯誤:#1052 - from子句中的列'id'含糊不清
- 29. 使用含糊不清的字符串值解析ANTLR4規則
- 30. 字段列表中的列'name'含糊不清
真棒,謝謝。事實上,我認爲我的解決方案工作,因爲我得到它在本地工作。但是當我開始部署時,我遇到了一個問題,那就是我的DLL中有一個在其manifest中有一個bung引用(我正在使用一些我從MvcFutures v1複製並粘貼的代碼,但是我看不到其中提到的任何版本)。所以你的答案解決了我的次要問題!謝謝! –