Reputation: 225
I'm working on a .net core 3.0 API and would need to reference class libraries that were developed using .net core 2.2. Will there be compatibility problems? Thanks!
Upvotes: 1
Views: 55
Reputation: 115
You can reference .net core 2.2 libraries from a .net core 3.0 project, but not the other way around.
Also, 2.2 is no longer supported so consider upgrading
Upvotes: 2