Regarding the support of .NET Standard 2.1 in UWP projects, it is written that it will be supported in the upcoming version.
This means that there will be the same problem as with the .NET Standard 2.0 version and that we will not be able to target older versions of Windows 10? .NET Standard 2.0 requires as min target version Windows 10 Fall Creators Update 16299.
This is a big problem for my projects and backward compatibility. I can't remove support for older versions of Windows 10, especially LTSC editions. This means that my projects are blocked in .NET Standard 1.4 and it also blocks any dependency updates:
Xamarin.Forms 2.5 because version >=3.0 requires .NET Standard 2.0
Microsoft.EntityFrameworkCore 1.1 because version >=2.0 requires .NET Standard 2.0
.NET Core 1.1 because version >=2.0 requires .NET Standard 2.0
I can't ask my users to have the latest version installed, especially in business applications and Windows LTSC editions. I have to wait several years before removing the support of an old version.
Is it planned to continue support the min target version 16299 of UWP projects with .NET Standard 2.1? I understand the constraints, but with Xcode I can still min target iOS 7 and with Android I can still min target 4.4 KitKat, still with the latest version of frameworks. And with Windows I can only support the latest version? That doesn't make much sense.
Regarding the support of
.NET Standard 2.1in UWP projects, it is written that it will be supported in the upcoming version.This means that there will be the same problem as with the
.NET Standard 2.0version and that we will not be able to target older versions of Windows 10?.NET Standard 2.0requires as min target version Windows 10 Fall Creators Update16299.This is a big problem for my projects and backward compatibility. I can't remove support for older versions of Windows 10, especially
LTSCeditions. This means that my projects are blocked in.NET Standard 1.4and it also blocks any dependency updates:Xamarin.Forms 2.5because version>=3.0requires.NET Standard 2.0Microsoft.EntityFrameworkCore 1.1because version>=2.0requires.NET Standard 2.0.NET Core 1.1because version>=2.0requires.NET Standard 2.0I can't ask my users to have the latest version installed, especially in business applications and Windows
LTSCeditions. I have to wait several years before removing the support of an old version.Is it planned to continue support the min target version
16299of UWP projects with.NET Standard 2.1? I understand the constraints, but with Xcode I can still min targetiOS 7and with Android I can still min target4.4 KitKat, still with the latest version of frameworks. And with Windows I can only support the latest version? That doesn't make much sense.