How to distribute razor views to another application in .NET Core
问题 I have created web application - Asp.Net MVC in .NET Core . This application contains some Razor Views but I would like to share these views to another application like for example with DLL or like middleware. Here is some information about example with distribution Controllers but around Views nothing special - https://docs.microsoft.com/en-us/aspnet/core/mvc/advanced/app-parts I've tried add Controller like this: var assembly = typeof(Project.HomeController).GetTypeInfo().Assembly; services