We have a project where we have created 2 separate areas to be used by administrators of a site, depending on which Role the authenticated user belongs to. There exists some overlapping functionality between the two areas, but not enough that we would combine them into a single area. So what we have done for the UI is create some partial views that are included from similar views within the two areas, however I'm having trouble deciding where to physically place the partial view.
It doesn't make sense to place it in ~/Views/Shared, as none of the root-level views use this particular partial view. It also doesn't make sense to place the file in ~/Areas/[Area]/Views/Shared, as neither of the areas directly "owns" this partial view.
What would you consider a best-practice location in this scenario?