How to downgrade Microsoft.AspNetCore.Mvc.Core version from 2.1.16 to 2.1.11

0

I am publishing my .net core application in local machine and deploying to client server. But my application gives below error.

Error:FileLoadException: Could not load file or assembly 'Microsoft.AspNetCore.Mvc.Core, Version=2.1.16.0, Culture=neutral, PublicKeyToken=adb9793829ddae60'. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)

I observed that I published my app with Microsoft.AspNetCore.Mvc.Core, Version=2.1.16.0 but client server have Microsoft.AspNetCore.Mvc.Core, Version=2.1.11. So for temporary fix I have replaced my dll into client machine.

But I need permanent fix for this. Please help me how to get Microsoft.AspNetCore.Mvc.Core, Version=2.1.11 version to my system.

c#
asp.net-mvc
asp.net-core
asp.net-core-webapi
asp.net-core-2.1
asked on Stack Overflow Apr 24, 2020 by Ramana • edited Apr 24, 2020 by BDL

1 Answer

0

You can either do this through Nuget or PM, just search or Nuget on VS, find the package you want to downgrade in the installed section, then on the right hand you can select which version to downgrade to.

answered on Stack Overflow Apr 24, 2020 by Sebastian.Bedn

User contributions licensed under CC BY-SA 3.0