I'm now using Visual Studio 2022 to recompile a DLL project for a Microsoft Store App (desktop-bridge win32). Visual Studio while upgrading recommends me to use .Net 4.8 framework.
I'm looking at the .NET framework versions for various Windows version on this page:
.NET Framework versions and dependencies
That means someone using my app on Windows 10 1803 will not have .Net framework 4.8 by default. So do I have to declare my min version in manifest file according to that page? Or, alternatively will the Microsoft Store automatically update the .Net framework for that user before installing the App?
What would be the proper recommended min version or build with a particular .Net framework strategy here?