-
Notifications
You must be signed in to change notification settings - Fork 10.2k
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 SDK #48252
Update SDK #48252
Conversation
@jjonescz @sharwell @333fred @chsienki After updating the .NET SDK from 8.0.100-preview.5.23257.1 to 8.0.100-preview.5.23265.3, we're seeing errors complaining about
Could this be related to dotnet/razor#8346 which was merged last week and was intended to suppress these warnings? |
@halter73 You're right, that bug fix was wrong in some cases. I opened a follow up to fix this: dotnet/razor#8709 |
dotnet/razor#8719 was merged, reverting the change here. |
dotnet/sdk#32650 brings that change into the SDK. Once that goes in & sdk -> installer flow is done we can grab the new SDK |
@eerhardt we're starting to see trimming test failures here |
I think this looks very similar to dotnet/sdk#32272. We could try switching:
to be But honestly - I'm not sure I understand the benefit of |
dotnet/sdk#32277 (comment) This comment should explain the feature a bit better, and I agree with your suggestion. |
Trying a fix
@adityamandaleeka can you have someone on your team investigate? |
@@ -57,7 +57,7 @@ | |||
<_Command Condition=" '$(ProjectAssetsFile)' != '' ">$(_Command) --assets-file "$(ProjectAssetsFile)"</_Command> | |||
<_Command Condition=" '$(PlatformTarget)' != '' ">$(_Command) --platform "$(PlatformTarget)"</_Command> | |||
<_Command Condition=" '$(PlatformTarget)' == '' AND '$(Platform)' != '' ">$(_Command) --platform "$(Platform)"</_Command> | |||
<_Command Condition=" '$(RuntimeIdentifier)' != '' ">$(_Command) --runtime "$(RuntimeIdentifier)"</_Command> | |||
<_Command Condition=" '$(RuntimeIdentifier)' != '' ">$(_Command) --runtime "$(RuntimeIdentifier) --self-contained"</_Command> |
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.
I don't know anything about this project. @captainsafia is this ok?
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.
Yes, this looks correct based on the breaking change details.
Had to react to the sdk breaking change: dotnet/docs#33726 |
These checks are green but I'm unsure if this is being held up by anything else? @halter73? |
No description provided.