aspnetcore/src/MvcPrecompilation/testapps/ApplicationWithConfigureMvc/Controllers/HomeController.cs

12 lines
263 B
C#

using Microsoft.AspNetCore.Mvc;
namespace ApplicationWithConfigureStartup.Controllers
{
public class HomeController : Controller
{
public IActionResult Index() => View();
public IActionResult ViewWithPreprocessor() => View();
}
}