ASP.NET MVC 4 Areas in separate projects not working (view not found)

19,394

You could use the RazorGenerator package to embed your Razor views into a separate assembly. Here are the steps to make this work:

  1. Install the Razor Generator Visual Studio extension (Tools -> Extensions and Updates...)
  2. Create a new ASP.NET MVC 4 application using the empty template.
  3. Add a new class library project to the solution called AreasLibrary (you could also use an ASP.NET MVC project template in order to get Intellisense in Razor views)
  4. Install the RazorGenerator.Mvc NuGet to the AreasLibrary project.
  5. Add a controller inside the AreasLibrary project (~/Areas/Admin/Controllers/HomeController.cs):

    public class HomeController: Controller
    {
        public ActionResult Index()
        {
            return View();
        }
    }
    
  6. Add a corresponding view (~/Areas/Admin/Views/Home/Index.cshtml):

    @* Generator: MvcView *@
    
    @{
        Layout = null;
    }
    
    <!DOCTYPE html>
    
    <html>
    <head>
        <meta name="viewport" content="width=device-width" />
        <title>View1</title>
    </head>
    <body>
        <div>
            Index view        
        </div>
    </body>
    </html>
    
  7. In the properties of the view set the Custom Tool to RazorGenerator.

  8. Inside the class library add an ~/Areas/AdminAreaRegistration.cs:

    public class AdminAreaRegistration : AreaRegistration
    {
        public override string AreaName { get { return "Admin"; } }
    
        public override void RegisterArea(AreaRegistrationContext context)
        {
            context.MapRoute(
                "Admin_Default",
                "Admin/{action}/{id}",
                new { controller = "Home", action = "Index", id = "" }
            );
        }
    }
    
  9. All that's left is to reference the class library in the main MVC application.

Reference: http://blog.davidebbo.com/2011/06/precompile-your-mvc-views-using.html

Share:
19,394

Related videos on Youtube

Tomino
Author by

Tomino

Software engineer in Zlín, Czech Republic Freelancer Sunseed Development s.r.o.

Updated on October 09, 2022

Comments

  • Tomino
    Tomino over 1 year

    I have tried to create simple proof-of-concept ASP.NET MVC 4 web site using areas in separate projects.

    I tried to following tutorials: http://bob.archer.net/content/aspnet-mvc3-areas-separate-projects (Application doesn't work in virtual directory... I use IIS). I hope there is better way than virtual directories.

    Then I tried this tutorial: http://forums.asp.net/t/1483660.aspx/1 But there is no "AreasManifestDir" element in *.csproj of area project (and got error "The view 'Index' or its master was not found or no view engine supports the searched locations")

    Is there still support in ASP.NET for MVC 4? Because I found this answer that it can be removed in future: What are the pros and cons of Areas implemented as single projects vs multiple projects in asp.net mvc

    I haven't found any how-to for MVC4.

    Structure of solution is simple:

    Solution 'MvcAreasMultiProject'
        Areas [Directory]
            Admin [Project]
            Models
            Views
            Controllers
            Routes.cs [Examples]
        MvcAreasMultiProject [MainProject]
            - References Admin project
            M.V.C
    

    Routes.cs of Admin project:

    namespace Admin
    {
    public class Routes : AreaRegistration
    {
        public override string AreaName { get { return "Admin"; } }
    
        public override void RegisterArea(AreaRegistrationContext context)
        {
            context.MapRoute(
                "Admin_Default",
                "Admin/{action}/{id}",
                new { controller = "Admin", action = "Index", id = "" },
                new[] { "Admin.Controllers" }
            );
        }
    }
    }
    

    Thanks for any help!

  • Tomino
    Tomino over 11 years
    Maybe little bit different answer to my question, but right solution. I would like to make different project for each area. So steps 1-4 are correct. Is not necessary to create one project with all areas, but is simpler to add models+views+controllers into separated projects directly. Thanks for your help - using RazorGenerator is the solution.
  • xximjasonxx
    xximjasonxx about 11 years
    No, the areas are not necessary, but any MVC dev should understand Areas and how to use them to better organize things
  • Rockdocta
    Rockdocta almost 11 years
    @darin-dimitrov - Suppose I did not want to add the class library reference to the main MVC application as you've described in step 9 above but instead dynamically "discover" my MVC area class libraries. Is there someway to accomplish this? I've tried using Assembly.LoadFrom(<dll-path>) to accomplish this, however I never seem to be able to find the view. Thanks!
  • Saurabh Palatkar
    Saurabh Palatkar almost 10 years
    I've some what similar problem, but above solution not working in my case. Here is my question: stackoverflow.com/questions/23403227/…
  • ChristoD
    ChristoD over 9 years
    @Rockdosta - You may find this blog post useful.
  • Lemon
    Lemon over 9 years
    Any ideas on how to get this area inside the layout of the main project?
  • piraces
    piraces about 7 years
    Here is another detailed and updated reference for anyone trying to use RazorGenerator: codeproject.com/Articles/1169354/…. This and the answer were very useful for me