What is the difference between .NET Framework/Core and .NET Standard Class Library project types?

Technology CommunityCategory: .NET CoreWhat is the difference between .NET Framework/Core and .NET Standard Class Library project types?
VietMX Staff asked 3 years ago

Use a .NET Standard library when you want to increase the number of apps that will be compatible with your library, and you are okay with a decrease in the .NET API surface area your library can access.

Implementing a .Net Standard Library allows code sharing across all different flavours of .NET applications like .NET Framework, .NET Core and Xamarin.