Why is the 'type or namespace name 'client' does not existin in the namespace'

Hey guys,

so i have a project currently running and compiling in the Radzen app,
however when i open the project in Visual Studio and do a build / rebuild i have a massive amount of errors which are traced to the \project\client\pages directory

it looks asthough each generated page has this same problem on compile with the error

CS0234 - They type or namespace name 'Client' does not exist in the namespace 'ProjectName' (are you missing an assembly reference?)

however when i manually open the error, i can see the using statement (it's on line 14) indicates;

using ProjectName.Client.Pages;

the Client reference highlightes with an error, then self resolves and the error is remediated.

manually opening 130 odd references (i.e. 130 odd pages) is not ideal, only to have the problem again replicate itself on re-build.

i haven't yet made any modifications to the code so i'm wondering why this namespace reference issue is occuring and can / should it be remediated?

Found the solution, i updated to VS 2022 (previously running VS2019)

this is now functioning as expected (y)