How to run a .NET core application against a older version of library #25855
Unanswered
ramsubbaraoc
asked this question in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have a library built using .netstandard framework and say the version of that library is 1.1.2. Now i have a .NET Core application built using that library(version:1.1.2).
If i upgrade the library version to 1.1.3, without recompiling is there a way to run the same .NET Core application against 1.1.3?
In .NET Framework we have bindingRedirect which can be set in the App.Config file and the .NET Framework application built using library version 1.1.2 can run against a library with version 1.1.3/1.1.1 as well without recompiling.Is there a similar thing for .NET Core as well?
Beta Was this translation helpful? Give feedback.
All reactions