-
Notifications
You must be signed in to change notification settings - Fork 10.5k
Update to newer SDK #14168
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
Update to newer SDK #14168
Conversation
|
Need to add NoWarn for NU5131: and NU5048: https://github.com/aspnet/AspNetCore-Internal/issues/3103. This will probably affect several SDK update PRs. |
|
CI is green - @dougbu @JunTaoLuo does this look good to go? Should I add back the |
|
Added the workaround for vNext SDK |
Not sure why this isn't working here, the exact same works fine in dotnet/ef6#1276 & dotnet/efcore#17945 |
|
Trying 7e5b057, which short-circuits when |
dougbu
left a comment
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.
Change looks straightforward. Not sure why builds are still failing but know you'll figure it out 😄
| <KnownAppHostPack | ||
| Include="@(KnownAppHostPack->WithMetadataValue('TargetFramework', 'netcoreapp3.0'))" | ||
| TargetFramework="$(DefaultNetCoreTargetFramework)" | ||
| Condition="(@(KnownAppHostPack->Count()) != '0') AND (!(@(KnownAppHostPack->AnyHaveMetadataValue('TargetFramework', '$(DefaultNetCoreTargetFramework)'))))" |
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.
Why the extra layer of parentheses around both of the AND'ed clauses?
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.
Paranoia 😆
|
Closing in favor of #14206 |
Part of https://github.com/aspnet/AspNetCore-Internal/issues/3016
Update to a newer 5.0 SDK which includes the
netcoreapp5.0TFM.CC @dougbu @JunTaoLuo