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?