After update visual studio to 17.11.3, in almost every file that i opened with visual studio threw some warning:
Severity Code Description Project File Line Suppression StateWarning (active) TS1109 (JS) Expression expected. Miscellaneous D:\xxx\Components\Core\DialogConfirmComponent.razor__virtual.html__virtual.js 9 As on screen
Is it some .net bug ? or i should do something with it? no idea what it is this _virtual.html_virtual.js? guess some temp file?
before update there was no such things...?
thanks and regards
Edit:
Minimal Reproducible Example
- Have 17.11.3 Visual Studio
- Dotnet new install MudBlazor.Templates
- New project - MudBlazor Web APP (server rendering mode / global)
- Open counter component. delete all.
- Paste into this counter component
<MudButton Variant="Variant.Filled" Color="Color.Primary" DropShadow="false" OnClick="@(()=>blabla())">Validate</MudButton>@code { public void blabla() { }}- Save and see the warnings
