我有一個asp.net核心2.0應用程序運行在完整的.net框架4.6.1。它工作正常,在當地,但是當我把它部署到Azure中我收到以下錯誤:FileLoadException:無法加載文件或程序集System.Runtime,版本= 4.2.0.0
FileLoadException: Could not load file or assembly 'System.Runtime, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
在調試/ Release文件夾我有System.Runtime 4.1.2.0但不知何故,它的工作原理。
在「經典」.NET框架中,我用來將程序集重定向添加到app.config,但在這裏我沒有web.config。任何想法如何解決這個問題?
「我沒有web.config」並不意味着你不能添加web.config。你嘗試過嗎? –
@LexLi - 也許我可以做到這一點,但它看起來像調試/發佈文件夾我有System.Runtime版本= 4.1.2.0 - 由於某種原因,它在本地工作。 –