SamulP
SamulP

Reputation: 225

Can a class library developed in .net core 2.2 be referenced by an app written in .net core 3.0?

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

Answers (1)

Tim
Tim

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

Related Questions