In update 15.0, the analyzer completely destroys intellisense making development extremely rough. If typing a bad line of code with an error, it takes nearly 10 - 20 seconds for the error to show, and after fixing it, another 10-20 seconds for the error to go away. The same for nullable objects etc.
I imagine this is much worse on other machines as my machine is about as strong as money can buy. I have added the below snippet into the csproj file and this brought intellisense back to sub-1s output. Please advise so users dont need to add these snippets to every project that we use telerik for maui on..
I imagine this is much worse on other machines as my machine is about as strong as money can buy. I have added the below snippet into the csproj file and this brought intellisense back to sub-1s output. Please advise so users dont need to add these snippets to every project that we use telerik for maui on..
<Target Name="RemoveTelerikLicensingAnalyzer" AfterTargets="ResolveLockFileAnalyzers" Condition="'$(BuildingInsideVisualStudio)' == 'true'"> <ItemGroup> <Analyzer Remove="@(Analyzer)" Condition="'%(Filename)' == 'Telerik.Licensing.Analyzer'" /> </ItemGroup> </Target>
