I have two MVC projects one as a parent project and the other as a child project. The child project adds reference to the parent project. I like to use partial views from th
Not really good, but simple solution that can solve your problem. One of overloads @Html.Partial() allows you to write full path to your View.
@Html.Partial()
Something like this:
@Html.Partial("~/View/Shared/_GenericGreeting.cshtml")