Description
Describe the bug
For a while now you've used a versioning scheme which is [Major].[Minor].[year][month][day]00x
, but you publicly talk about it as [major],minor].[releasenumber].
This has quite a few downsides:
It's much harder to just update your nuget package reference "by memory" because the version we talk about and the version we reference are completely different, and no one can remember the long version numbers. I've even seen Microsoft often get confused about which version is which release, like here and there's been several cases before in announcements/tweets/blogs:
I think it would make more sense to stop using year/date/month/number and just use plain old versioning that matches the release names, like you had it prior to v1.2. It's was simple, predictable and easy to understand, and it simplifies life for developers to understand where you are wrt versions relative to current releases.
From my understanding, the reasoning for this versioning scheme is purely an internal engineering thing (that should be easily overcome), and not a conscious decision around versioning nuget packages.
The ship has sailed for v1.5, since you're already released preview packages that would be seen as "newer" than 1.5.0, but perhaps consider this for the first 1.6.0 previews?
NuGet package version
Windows App SDK 1.5 Experimental 2: 1.5.240124002-experimental2
Additional context
Here's a slightly different way how MAUI does versioning, where only previews gets weird numbering:
https://www.nuget.org/packages/Microsoft.Maui.Sdk/
That might be useful when distinguishing experimental and previews