Conversation
- Fix Directory.Packages.props: use TFM-appropriate Microsoft package versions (8.0.x for net8.0, 9.0.x for net9.0, 10.0.x for net10.0) instead of 10.0.3 across all targets (Renovate bot error) - Migrate MudFileUpload ActivatorContent to CustomContent (MudBlazor v9) - Remove obsolete InputStyle, move opacity to InputClass - Update ServerDataFunc signature with CancellationToken parameter - Move PanelClass from MudTabs to MudTabPanel (MudBlazor v9 API change) - Replace removed SetText() with ValueChanged.InvokeAsync() in tests - Suppress MUD0012 analyzer in test projects for .Value assertions Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Directory.Packages.propswas using10.0.3Microsoft packages for all TFMs, but those only supportnet10.0. Now uses8.0.xfornet8.0,9.0.xfornet9.0, and10.0.3fornet10.0.ActivatorContent→CustomContent,InputStyle→InputClass,PanelClassmoved fromMudTabstoMudTabPanel,ServerDatadelegate now requiresCancellationToken.SetText()withValueChanged.InvokeAsync(), suppressMUD0012analyzer in test projects.Test plan
dotnet buildsucceeds with 0 errors across all TFMs (net8.0, net9.0, net10.0)dotnet testpasses 666/668 tests (1 pre-existing failure unrelated to this PR, 1 skipped)🤖 Generated with Claude Code