When should we use .NET Core and .NET Standard Class Library project types?

Technology CommunityCategory: .NET CoreWhen should we use .NET 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.
  • Use a .NET Core library when you want to increase the .NET API surface area your library can access, and you are okay with allowing only .NET Core apps to be compatible with your library.