I'm migrating a .net framework web to .netcore
Having issues with moving the 'Views' folder. It seems that every razor page with
@inherits ViewPage<TModel>
I get an error "The type or namespace 'ViewPage<>' could not be found (are you missing a using directive or an assembly reference?).
I've installed ServiceStack.Razor and ServiceStack.Mvc nuget package in my project but it's not able to recognize it in Views folder.
On my _ViewImports.cshtml, I have also added @using package references
Also, I am using 'Request.[]' from ServiceStack.Razor but it's unable to recognize Request.
Any ideas of what I'm missing? Should I be updating it to @model instead? When I update to @model it's working fine but 'Request' is still unrecognized