aspnetcore/test/WebSites/RazorBuildWebSite/Controllers/PrecompilationController.cs

14 lines
239 B
C#

using Microsoft.AspNetCore.Mvc;
namespace RazorBuildWebSite.Controllers
{
public class PrecompilationController : Controller
{
public new ActionResult View()
{
return base.View();
}
}
}