There are several versions created for MyGet : System.Linq.Dynamic.Core :
However for some reason the oldest version still has the flag latest
?
Is this a bug in MyGet, or is there a setting to fix this ?
There are several versions created for MyGet : System.Linq.Dynamic.Core :
However for some reason the oldest version still has the flag latest
?
Is this a bug in MyGet, or is there a setting to fix this ?
I was facing the same issue. I have found that it is not the issue with myget flagging the latest packages, it is to do with NuGet package versioning rules.
Please read this link to understand your issue https://learn.microsoft.com/en-us/nuget/concepts/package-versioning
For me, the issue was as follows,
The packages were versioned like,
7.2.0.build999 - This was flagged latest
7.2.0.build1000 - This was not flagged latest even uploaded after 999 and versioned higher than 999
And the reason was,
Hope this helps :)