-
Notifications
You must be signed in to change notification settings - Fork 519
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"-prerelease" in .nuspec breaks paket update etc.
#1099
Comments
|
"0.33.0-beta-prerelease" is not correct syntax. so I messed that up. |
|
so I fixed that in 2.5. - but you have to pack the package with the broken "0.33.0-beta-prerelease" in the nuspec again. sorry about that |
|
Thanks! I'll have to dig around and see how many things I've built since 2.4.8 got released, but it shouldn't be too many. |
|
Sorry I didn't notice this before, but continuing to dig around, paket 2.5.0 is still adding |
|
fixed that too. please try 2.5.1 |
|
Now showing in the nuspec file as I'll try not to complain again for at least a few more hours 😉 |
|
It's good to have that fixed. Thanks for reporting
|
After building a project and distributing the new package today, noticed that
paket updatefails when updating a package that depends on a pre-release package. Calling the three packages "A", "B", and "C", "A" and "B" are in the same solution and now at version0.33.0-beta; "B" depends on "A", and this is specified as a project-dependency in the project file. Project "C" depends on "B" only.Output of
paket updatelooks like this:After some quick testing, it looks like some part of the changes for #1088 added this
-prereleasesuffix to the end of project B's version requirement for project A, rather than leaving it as requiring0.33.0-beta. Assuming that this new suffix is intended to be there, I'm not sure whether this is considered an issue in howpaket packis naming my packages, how it's creating the.nuspecfile, or in how dependency resolution is finding the required packages.The text was updated successfully, but these errors were encountered: