-
-
Notifications
You must be signed in to change notification settings - Fork 207
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
feat: Added .NET8 as TFM for Blazor.WebAssembly
package
#3501
Conversation
|
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.
LGTM
Should this be done for other libraries like |
As far as I can tell, either none of those have TFM version specific dependendencies or they are (like Sentry.AspNetCore) already targeting |
At least the mentioned package |
And we're building versions for those
|
Sorry, I was unclear about what I mean. Since |
It's about the package's dependencies: Looking through the other packages, they don't have those. So we don't need to target any additional TFMs explicitely. |
From my understanding this does not only apply to direct dependencies but also to downstream dependencies (see #2021 (comment)). This would affect all libraries that have a dependency on |
TIL! Fair enough. Created an issue to track this: #3598 |
Addresses #2021 (comment)
Since the package has a dependency on
Microsoft.AspNetCore.Components.WebAssembly
adding .NET 8 as TFM allows users to resolve the actual .NET 8 dependency chain.