-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Fix FXVersion manifest version bug #17614
Conversation
I couldn't figure out the best area label to add to this PR. If you have write-permissions please help me learn by adding exactly one area label. |
Actually, I hit the same thing and fixed it (I think) for 5.0.300 in #17329. So you may just want to merge the 5.0.3xx changes forward. Also take a look at the difference between the fixes, it looks like we're handling the build number differently. |
It looks like main does contain those commits but somehow the changes got lost in places (maybe a bad merge?). I'll fix the build difference but otherwise main seems to have the changes from #17329 |
I had also added test coverage which seems to have gotten lost. Maybe you could try re-cherrypicking those commits? |
Check dependencies in workload manifests (dotnet#16746) * Implement workload manifest dependency validation * Test workload manifest dependency validation * Workload manifest version is now semver * Update projects that link/reference WorkloadManifestReader
c63fc35
to
a5bda50
Compare
Sure, just pushed those instead of my changes |
@dsplaisted this is failing consistently, it looks like a workload resolver issue, do you have any ideas? |
That test calls nuget.exe to restore, which ends up using the full Framework version of MSBuild. So it sounds like this is failing because the version of VS on the CI machine doesn't have the SDK resolver changes for the manifest version number schema change. Probably if you change the test to set |
A fix here needs to make it into preview5. |
@sfoslund This needs to be retargeted to Preview 5, right? (I disabled auto-merge because of this.) |
@dsplaisted I was going to port it to preview 5 after it's in main |
Preview 5 PR: #17668 |
Co-authored-by: Matt Thalman <[email protected]>
Fixes #17567