-
I would like to know if .Net 5.0 can use libraries from older SDK, Core, Standard packages easily. If so how and which older versions will be supported? |
Beta Was this translation helpful? Give feedback.
Answered by
jnm2
Aug 9, 2021
Replies: 1 comment
-
A project targeting .NET 5 can use libraries which target:
The same way you would reference a .NET 5 library. Using |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
akoeplinger
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A project targeting .NET 5 can use libraries which target:
The same way you would reference a .NET 5 library. Using
<PackageReference Include="SomePackageId" Version="1.2.3" />
is the standard way, but you can also use<Reference Include="Path/to/SomeAssemblyFile.dll" />
.