-
Notifications
You must be signed in to change notification settings - Fork 763
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
[release/3.1] Add dependencies for CPD strict in efcore #3408
Conversation
<Dependency Name="Microsoft.DotNet.PlatformAbstractions" Version="3.1.6"> | ||
<Uri>https://github.com/dotnet/core-setup</Uri> | ||
<Sha>d7dd3dd2bad597a566915d6c8065fdffefef4be7</Sha> | ||
</Dependency> | ||
<Dependency Name="Microsoft.Win32.Registry" Version="4.7.0" Pinned="true"> |
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.
While here, should we unpin the dependencies from corefx and use CoherentParentDependency="Microsoft.NETCore.App.Runtime.win-x64"
for all of them❔
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.
For these specific packages, we want them to be pinned: dotnet/aspnetcore#18519.
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.
That answers my question for Microsoft.Win32.Registry
because we don't have the .0
auto-downgrades that dotnet/aspnetcore does. But, what about the following❔
System.IO.Pipelines
System.Runtime.CompilerServices.Unsafe
System.Security.Cryptography.Cng
Microsoft.NETCore.App.Ref
NETStandard.Library.Ref
The first two aren't pinned at .0
versions and System.IO.Pipelines
is out-of-date (there's a 4.7.2 version). These are the ones (after deeper checks) I'm most wondering about unpinning now we have strict coherency to help us.
System.Security.Cryptography.Cng
should be left where it is, again because we don't have the .0
auto-downgrades here.
I'm less sure about Microsoft.NETCore.App.Ref
and NETStandard.Library.Ref
because they aren't referenced in this repo or dotnet/aspnetcore. They're probably here to help strict coherency further up the stack. Either way, it's extremely unlikely those ref/ packs will need to be serviced. They're probably fine pinned.
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.
Let's continue this discussion in dotnet/aspnetcore#24937
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.
Feel free to merge for 3.1.8
No description provided.