Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

.Net standard version for .Net core 2.2

Googled a bit but couldn't find the .Net standard version for .Net core 2.2. Only version I got is,

enter image description here

Any hint please?

like image 944
Vijayanath Viswanathan Avatar asked Jan 27 '19 08:01

Vijayanath Viswanathan


People also ask

Is .NET standard compatible with .NET core?

NET Standard is compatible with libraries that target that . NET Standard. One of those compatible platforms is . NET Core.

Is .NET Core 2.2 supported?

NET Core 2.2 is supported until December 23, 2019. After that time, . NET Core patch updates will no longer include updated packages of container images for . NET Core 2.2.

Is .NET 5 compatible with .NET standard 2?

NET 5 and all future versions will always support . NET Standard 2.1 and earlier. The only reason to retarget from . NET Standard to .


1 Answers

As you can see in the table you have uploaded, .NET Standard 2.0 is the latest available and it is fully supported by .NET Core v2.0. As you can see in this release doc. section, .NET Standard 2.1 will be supporting .NET Core 3.0 and also .NET Core 2.2. For the whole page check here.

.NET Standard 2.1

In my opinion, you can go with .NET Standard 2.0 if you do not deal with extreme things (I mean recently added parts of .NET Core). This can yield some errors but still worth the try.

like image 120
Hasan Avatar answered Dec 14 '22 23:12

Hasan