I am hoping someone came across this before. I am using VS 2022 (17.3.3), and debugging a Blazor web server project. It has been working fine for a long time, but I recently changed a few options, and now it won't detect code changes when I make them while running.
When I do, it simply says at the bottom left corner "No code changes detected."
The changes I made were:
- Tools / Options / Debugging, General - turn off "Enable Diagnostic Tools while debugging"
- In Project file, added the following to speed up Intellisense in Blazor component pages:
<Target Name="DisableAnalyzers" BeforeTargets="CoreCompile" Condition="'$(DesignTimeBuild)' == 'true'">
<ItemGroup>
<Analyzer Remove="@(Analyzer)" Condition="'%(Filename)' == 'Microsoft.NET.Sdk.Razor.SourceGenerators'" />
<Analyzer Remove="@(Analyzer)" Condition="'%(Filename)' == 'System.Text.Json.SourceGeneration'" />
<Analyzer Remove="@(Analyzer)" Condition="'%(Filename)' == 'Microsoft.Extensions.Logging.Generators'" />
</ItemGroup>
</Target>