Korneel
Korneel

Reputation: 1507

Can I use a Nuget package written in .NET Core in a regular .NET project?

I would like to write a REST API client in .NET Core, publish it as a Nuget package and use it in a regular .NET project. Is that possible? Do I have to install .NET Core on the server where the project runs?

Upvotes: 0

Views: 61

Answers (1)

k94ll13nn3
k94ll13nn3

Reputation: 679

As long as you use a (regular) .NET version that is compatible with the .NET Standard version of your package, yes it is possible. You can find the link between .NET Standard version and .NET version here

And you don't have to have .NET Core on the server that runs your regular .NET project.

Upvotes: 2

Related Questions