Currently the root of my Pages folder I have 5 files:
_ViewStart.cshtml_ViewImport.cshtml_Layout.cshtml_LayoutInner.cshtmlIndex.cshtml- finally I page I actually use
That looks a little bit messy, especially with potential of having more _Layout files. So, is it possible to move "special" files (with underscore prefix) to "special" folder, like it was case in ASP.NET MVC with Shared?
Or I am required to keep carrying these files in root of my Razor views folder?