Does Resharper not support razor files in Blazor hybrid apps?
I am not getting the R# indicator in the amrker bar and no R# functionality in razor files in a Blazor hybrid app. However it works in another Blazor server side razor files.
Does R# not work in razor files in BlazorHybrid apps? It works in the .cs files.
I geth this behavior in both VS 2022 and VS 2026 Insiders.
Please sign in to leave a comment.
Adding this in the .csproj file, made R# recognize the razor files
<ItemGroup>
<RazorComponent Include="**\*.razor" />
</ItemGroup>