Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 942 Bytes

Readme.md

File metadata and controls

33 lines (24 loc) · 942 Bytes

CustomViewLocation

Build status MyGet NuGet

Simple extension to simplify custom view location in ASP.NET Core MVC.

Currently defines ~/Features and ~/Features/_Shared as view locations.

Installation

Install from NuGet

PM> Install-Package CustomViewLocation

Usage

Update Startup.cs

public class Startup
{
    // ...
    public void ConfigureServices(IServiceCollection services)
    {
        // ...
        service.AddCustomViewLocation();
        // ...
    } 
    // ...
}