using Microsoft.AspNetCore.Mvc.Razor; namespace PlanTempus.Application.Common { public class ComponentsViewLocationExpander : IViewLocationExpander { public void PopulateValues(ViewLocationExpanderContext context) { } public IEnumerable ExpandViewLocations(ViewLocationExpanderContext context, IEnumerable viewLocations) { var componentLocations = new[] { "/{0}.cshtml/" //, //"/Components/{1}/" }; return componentLocations.Concat(viewLocations); } } }