You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Modern nuget/PS packages generally follow a semver style format with three quadrants. As all of your releases have not utilized the 4th quandrant, and this causes problems with some package managers (e.g. ModuleFast) if you have a trailing zero because the nuget libraries normalize this to x.y.z instead of x.y.z.0, and then it gets placed in the wrong folder for PowerShell causing an install issue.
if you could update your package to not have a trailing zero, (e.g. next release 0.4.16 instead of 0.4.16.0) it would help a lot :).
Thanks!
The text was updated successfully, but these errors were encountered:
Hi,
Modern nuget/PS packages generally follow a semver style format with three quadrants. As all of your releases have not utilized the 4th quandrant, and this causes problems with some package managers (e.g. ModuleFast) if you have a trailing zero because the nuget libraries normalize this to x.y.z instead of x.y.z.0, and then it gets placed in the wrong folder for PowerShell causing an install issue.
if you could update your package to not have a trailing zero, (e.g. next release 0.4.16 instead of 0.4.16.0) it would help a lot :).
Thanks!
The text was updated successfully, but these errors were encountered: