-
Notifications
You must be signed in to change notification settings - Fork 10.4k
Remove dependencies on packages we build here #19375
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
Conversation
This change restores automated dependency from into this repo. #19003 migrated some dependencies into this repo but did not update the version files. This caused generation to dependency PRs to fail. This change fixes the dependency tracking and manually updates dependencies.
</Dependency> | ||
<Dependency Name="Microsoft.Extensions.Options.DataAnnotations" Version="5.0.0-preview.2.20121.3" CoherentParentDependency="Microsoft.AspNetCore.Razor.Language"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The diff is bad here because XML. The list of things I removed is based on the package list in 19033.
If there were still 'extra' references then the dependency update would fail, so I know I got them all.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should also remove all the .Sources packages. They are now in the /src/Shared. They still exist in extensions but will be removed when types are migrated to dotnet/runtime.
So if I understand you correctly, these are still published from extensions, but we don't actually depend on them? |
Yes |
This code has already migrated to this repo. The extensions repo still publishes these packages, but they are not consumed here. Removing the references from dependency lists will avoid a future break when they go away from extensions.
@JunTaoLuo updated |
This change restores automated dependency from into this repo.
#19033 migrated some dependencies into this repo but
did not update the version files. This caused generation to dependency
PRs to fail.
This change fixes the dependency tracking and manually updates
dependencies.
@JunTaoLuo