Eple
VS Code Fails to Highlight Missing Symbol in @code Section of .razor File
I just ran
dotnet build
, and it throws the following error:
SupportWorker.razor(94,27): error CS0246: The type or namespace name ‘UseQuarterRequest’ could not be found (are you missing a using directive or an assembly reference?)I also took a look at the Debug Console, and it shows the same error. The in-editor feedback seems to be a Rider-specific feature. Going forward, I’ll make sure to check the Debug Console or run
dotnet build
whenever I run into issues while using VS Code.10 replies
Question regarding tasks
but in general await multiple times is kinda the wrong patternThe thought behind my original code is that the tasks will run in parallell, but the point of the
await usersTask
is to retrieve its results. Since it has been established that it will immediately return the result, then I think there's no problem.53 replies