-
Notifications
You must be signed in to change notification settings - Fork 524
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
VS's Package Management Console is broken #3231
Comments
But the packages.config is correct. Isn't it? |
I don’t think packages.config allows version ranges. packages.config always locks a particular version. I guess we have mixed parsing/serializing logic between multiple formats here? |
i can repro too at work. |
This also breaks unit test integration (e.g. xunit.runner.visualstudio) |
Do you folks have any updates on this? As far as I can tell and can verify locally, we just need to remove the square brackets from the version string in |
Yes, we would accept a fix. I can't do it myself right now, since I'm on
longer vacation.
ben-reilly <notifications@github.com> schrieb am Do., 14. Juni 2018, 01:07:
… Do you folks have any updates on this? As far as I can tell and can verify
locally, we just need to remove the square brackets from the version string
in packages.config.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#3231 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AADgNFNdzNR7tcZmUcwArj44-MB2IP0Pks5t8ZsTgaJpZM4UT0U6>
.
|
See #3253. |
@inosik That looks right to me. Thanks for putting it together. For others, here's the reference: https://docs.microsoft.com/en-us/nuget/reference/package-versioning It appears that although it's possible to specify ranges in project and .nuspec files, and even in the "allowedVersions" attribute in |
Description
The changes introduced in commit 833b36c broke the Package Management Console in Visual Studio.
The brackets syntax seems to be not supported by NuGet.
Repro steps
paket.dependencies
with the following content:Create a classic .csproj and put
EntityFramework
to itspaket.references
.Execute
paket install
.Expected behavior
packages.config
contains:Actual behavior
packages.config
contains:The text was updated successfully, but these errors were encountered: