I've develop a CMS in .net WebForms which i now want to transfer to .net Core 2.
The Structure of the CMS is like below. All built in one project(DAL and BLL are in seperate projects)
- FrontEnd
- Application (Administration of the CMS)
- FrontEndShared(Shared Controls among solutions)
- Assets (Virtual directory with Shared assets)
- CMSContent (Virtual directory where the seperate solutions have their custom usercontrols, masterpages, images, stylesheets and so on)
Is it possible to create the same structure in .net Core. Or Should i a solution for both Front- and Backend.
The current CMS have a catch all nodehandler which renders all pages which are virtual. Which as far as i can see can be ported to a catch all route in .net core.
Ive testet some functionality and have some troubles loading LayOutpages and Views from a virtual directory in .net core.
Any advices or good examples.