Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: CommunityToolkit/dotnet
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v8.4.1
Choose a base ref
...
head repository: CommunityToolkit/dotnet
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v8.4.2
Choose a head ref
  • 4 commits
  • 2 files changed
  • 2 contributors

Commits on Mar 24, 2026

  1. Fix incorrect version check order in MVVMToolkitRemoveDuplicateAnalyz…

    …ers target
    
    MSBuild PropertyGroup elements are evaluated top-to-bottom, with later
    assignments overwriting earlier ones. The >= 4.12 check was before the
    >= 4.3 check, so for any Roslyn version >= 4.12 (including 5.0), the
    4.12 result would be immediately overwritten by the 4.3 match. This
    caused the wrong analyzer (roslyn4.3) to be selected instead of the
    correct one (roslyn4.12).
    
    Swap the order so the lower version (4.3) is checked first and the
    higher version (4.12) is checked last, ensuring the highest compatible
    analyzer wins.
    
    Co-authored-by: Copilot <[email protected]>
    Sergio0694 and Copilot committed Mar 24, 2026
    Configuration menu
    Copy the full SHA
    02d81da View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1174 from CommunityToolkit/fix/analyzer-dedup-ver…

    …sion-order
    
    Fix incorrect version check order in MVVMToolkitRemoveDuplicateAnalyzers target
    Sergio0694 authored Mar 24, 2026
    Configuration menu
    Copy the full SHA
    f207070 View commit details
    Browse the repository at this point in the history
  3. Set version.json to 8.4.2

    Sergio0694 committed Mar 24, 2026
    Configuration menu
    Copy the full SHA
    b135626 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    35dfe7b View commit details
    Browse the repository at this point in the history
Loading