fossmium / OneDrive-Cloud-Player

OneDrive Cloud Player is a media player dedicated for streaming files directly from OneDrive.
GNU General Public License v2.0
60 stars 7 forks source link

Upped platform target version #64

Closed TimGels closed 2 years ago

TimGels commented 2 years ago

Microsoft states that the target platform version should be as recent as possible to allow recent versions of Windows to run the application.

Target platform version went from 10.0.18362.0 to 10.0.19041.0.

https://docs.microsoft.com/en-us/windows/uwp/updates-and-versions/choose-a-uwp-version#choose-which-version-to-use-for-your-app

JohannesKauffmann commented 2 years ago

Microsoft states that the target platform version should be as recent as possible to allow recent versions of Windows to run the application.

MS states:

The value you choose specifies the version of the UWP platform that your project is targeting—and therefore the set of APIs available to your app

So the Target version only implies which APIs we can use. Using a lower Target version doesn't mean the app can't run on a higher version of Windows, since older APIs aren't removed or deprecated in newer versions of Windows.

That said, I'm not against this change.