I have few questions on the .NET Standard and the recently announced .NET Core 3.0 and ASP.NET Core 3.1
The previous versions of .NET Standard had the same major version as that of the .NET core being released, but for .NET Core 3.1 the compatible is .NET Standard 2.1.
Do we change the target framework for our old .NET Standard class libraries from :
<TargetFramework>netstandard2.0</TargetFramework>
To
<TargetFramework>netstandard2.1</TargetFramework>
Or Change to
<TargetFramework>netcoreapp3.0</TargetFramework>
and add a FrameworkReference to Microsoft.AspNetCore.App
Aside - .NET Standard will be less relevant moving forward when .NET 5 comes out and unifies the platform, and now that multi-targeting works so well, it will still remain relevant for the following year and be relevant for dealing with API surfaces of older frameworks.
ASP.NET Core 3.0 is compatible with .NET Standard 2.1, therefore ASP.NET Core 3.1 will be also be. (The phasing you use suggests you have the relationship backwards)
You can continue to reference .NET Standard 2.0 libraries from frameworks that support it and higher, so you could still use it in ASP.NET Core 3.1 when it becomes available.
For your final question, it depends :)
If you are dealing with a non-web library, then netstandard2.1
would be suitable (not mandatory though, you can leave it at 2.0).
If you have an ASP.NET Core project, or related web library project, then you probably want to move to netcoreapp3.0
.
For clarification on my last point, you won't find a better explanation than from Andrew Lock here: https://andrewlock.net/converting-a-netstandard-2-library-to-netcore-3/
The official guidance on upgrading can be found here
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With