Open martin-shields-sage opened 8 months ago
Just to note, I originally saw this in one of my other repos and when I was able to run the CLI locally to see if I could figure out the issue I got these addtional logs:
updater | Running for SDK-style project
updater | Found unsupported version property [****] value [6.0.2.*] in [Directory.Build.props].
updater | Found unsupported version property [****] value [6.0.1.*] in [Directory.Build.props].
I have *d out the property names due to those being private packages
Any plans to support wildcards with nuget? Just came across this
We're working on using the full MSBuild to evaluate dependencies. That work is ongoing and won't be ready for a few more weeks, but it does handle wildcard versions.
Is there an existing issue for this?
Package ecosystem
nuget
Package manager version
latest
Language version
.NET 6
Manifest location and content before the Dependabot update
https://github.com/martin-shields-sage/TestProject/blob/master/TestProject.csproj
dependabot.yml content
Updated dependency
https://www.nuget.org/packages/Newtonsoft.Json
12.* -> 13.0.3
What you expected to see, versus what you actually saw
I expect to get a PR for it to update newtonsoft.json to version 13... (If i update my .csproj with
12.0.3
for example it will run successfully and provide the PR) what I got was an error in dependabot and no PR made.Native package manager behavior
NuGet resolves 12.* to the latest version which at the time of writing is
12.0.3
Images of the diff or a link to the PR, issue, or logs
Smallest manifest that reproduces the issue
https://github.com/martin-shields-sage/TestProject
the project above is a simple c# console application using .NET6 and demonstrates the issue.