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: dotnet/razor
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e50ff65c53a604d4be6c5105b5ddb1a63486ec87
Choose a base ref
...
head repository: dotnet/razor
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b7860660581174f32d28e3ce127f4818055dd297
Choose a head ref
  • 12 commits
  • 81 files changed
  • 5 contributors

Commits on Feb 6, 2026

  1. Configuration menu
    Copy the full SHA
    7d91b81 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d479fc6 View commit details
    Browse the repository at this point in the history
  3. Update code that deals with using directives to handle the new type, …

    …simplifying a bunch of it
    davidwengier committed Feb 6, 2026
    Configuration menu
    Copy the full SHA
    e36956c View commit details
    Browse the repository at this point in the history
  4. Add a strongly typed property for the directive body, to simplify code

    This has always annoyed that we had to cast this, so thought I'd twaek it while we're here.
    davidwengier committed Feb 6, 2026
    Configuration menu
    Copy the full SHA
    afe36d9 View commit details
    Browse the repository at this point in the history
  5. Fix semantic tokens

    davidwengier committed Feb 6, 2026
    Configuration menu
    Copy the full SHA
    2eb03dc View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ac61d23 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    46847c9 View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2026

  1. Configuration menu
    Copy the full SHA
    a5a7620 View commit details
    Browse the repository at this point in the history

Commits on Feb 11, 2026

  1. Configuration menu
    Copy the full SHA
    0d00c23 View commit details
    Browse the repository at this point in the history
  2. [main] Update dependencies from dotnet/arcade (#12748)

    * Update dependencies from https://github.com/dotnet/arcade build 20260204.6
    On relative base path root
    Microsoft.DotNet.Arcade.Sdk From Version 10.0.0-beta.26080.4 -> To Version 10.0.0-beta.26104.6
    
    * Update dependencies from https://github.com/dotnet/arcade build 20260206.4
    On relative base path root
    Microsoft.DotNet.Arcade.Sdk From Version 10.0.0-beta.26080.4 -> To Version 10.0.0-beta.26106.4
    
    * Update dependencies from https://github.com/dotnet/arcade build 20260210.1
    On relative base path root
    Microsoft.DotNet.Arcade.Sdk From Version 10.0.0-beta.26080.4 -> To Version 10.0.0-beta.26110.1
    
    ---------
    
    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
    dotnet-maestro[bot] and dotnet-maestro[bot] authored Feb 11, 2026
    Configuration menu
    Copy the full SHA
    63b27d7 View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2026

  1. Configuration menu
    Copy the full SHA
    4abe6ad View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2026

  1. Modify RazorCSharpDocument to keep SourceMappings sorted by both orig…

    …inal and generated document positions (#12772)
    
    * Modify RazorCSharpDocument to keep sourcemappings sorted by both Original and Generated document indices
    
    This class previously just kept an array that was sorted by generated positions. Many callers would benefit instead from an array sorted by original (html) posititions. This allows many loops to short-circuit once they've moved beyond any mappings that could be of interest to them.
    
    This also renamed the original array to indicate it's sorted by generated positions, and to validate that upon it's input, as some callers were assuming that. By renaming this variable, it will hopefully make callers
    
    1) Aware that the input is sorted and may be short-circuited or binary searched
    2) Aware what it is sorted by (eg: formatting had some code that was assuming the array was sorted by original position)
    
    * Be more resilient to bad input
    
    * Use Debug.Fail
    
    * Fix test to do different validation in debug/release
    ToddGrun authored Feb 13, 2026
    Configuration menu
    Copy the full SHA
    b786066 View commit details
    Browse the repository at this point in the history
Loading