Reputation: 1507
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
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