1

Release notes say that Dapper is compatible with .NET Standard 2.0. Why does it work with .Net Core 3.1? Since what release does it work?

ckoch
  • 31
  • 6
  • You need to read up on what [.NET Standard](https://learn.microsoft.com/en-us/dotnet/standard/net-standard) is... – DavidG Mar 19 '20 at 16:44
  • 1
    Does this answer your question? [What is the difference between .NET Core and .NET Standard Class Library project types?](https://stackoverflow.com/questions/42939454/what-is-the-difference-between-net-core-and-net-standard-class-library-project) – DavidG Mar 19 '20 at 16:45

1 Answers1

2

OK - I understand. .Net Standard 2.0 asks for a minimum version (.Net core 2.0). 3.1 is therefore compatible.

Thanx DavidG!

ckoch
  • 31
  • 6