I am creating a multi-target nuget package that currently targets .NET 4.5, .NET Core 2.1 and .NET Core 3.0.
Microsoft seems to promote the change vom .NET Core 2.1 to 2.2.
Since .NET Core 2.2 is advertised as in "Maintenance" mode, and will have "End of Support" soon, I am wondering whether I should even bother to include .NET Core 2.2 as a target, especially since the "older" .NET Core 2.1 seems to be supported until around 2021.
Would my nuget package benefit from targetting .NET Core 2.2, or would any potential referencing project be happy to use the .NET Core 2.1 version anyway?
Note: My Dependencies for .NETCoreApp 2.1 are as follows
Microsoft.AspNetCore.Http.Abstractions (>= 2.1.1)
System.Data.SqlClient (>= 4.5.1)