I've developed a number of services with ServiceStack, some of them have UI requirements which are needed to configure them. I can ship the background REST services easily enough in a DLL and get them registered in the hosting application just by adding the dll to a list of DLL's to be scanned.
But what I'm wondering about is the UI elements, what is the best way to ship these for a service stack user interface? They basically rely on a _Layout.cshtml being available and after that they are standalone. I obviously don't want to mess up an existing site, or clash with that sites own page names or routes.
Does anyone have any previous experience doing something like this with Service Stack. Is there a neat way to perform this kind of integration with it's architecture?