Reputation: 6478
I have two different projects within a solution in ASP.NET MVC. Is there a way to have a master view shared between both projects?
Upvotes: 1
Views: 72
Reputation: 1038820
One solution would be to embed the master file into a shared assembly and implement a custom VirtualPathProvider.
Upvotes: 1